 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --wb-bg: #053b49;
    --wb-lime: #d9ff00;
    --wb-white: #ffffff;
    --wb-text-soft: rgba(255, 255, 255, 0.72);
    --wb-dark: #0a2430;
    --wb-border: #d9d9d9;
    --wb-input-bg: #f5f5f5;
    --wb-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    --wb-radius-xl: 22px;
    --wb-radius-lg: 18px;
    --wb-radius-md: 12px;
    --wb-container: 1120px;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: #f1f1f1;
    color: #111;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  button,
  input,
  select {
    font-family: 'Inter', sans-serif;
    outline: none;
  }

  .wb-hero {
    position: relative;
    background: var(--wb-bg);
    overflow: hidden;
    padding: 26px 0 150px;
  }

  .wb-container {
    width: min(100% - 32px, var(--wb-container));
    margin: 0 auto;
  }

  .wb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 20;
  }

  .wb-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--wb-white);
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .wb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .wb-brand-mark {
    width: 28px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  .wb-brand-mark::before,
  .wb-brand-mark::after,
  .wb-brand-mark span {
    content: "";
    position: absolute;
    top: 0;
    width: 7px;
    height: 18px;
    background: var(--wb-lime);
    transform: skewX(-28deg);
    border-radius: 1px;
  }

  .wb-brand-mark::before {
    left: 0;
  }

  .wb-brand-mark span {
    left: 8px;
  }

  .wb-brand-mark::after {
    left: 16px;
  }

  .wb-brand-text {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--wb-white);
    white-space: nowrap;
  }

  .wb-brand-text strong {
    color: var(--wb-lime);
    font-weight: 800;
  }

  .wb-nav {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .wb-nav a {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--wb-white);
    transition: 0.25s ease;
  }

  .wb-nav a.active,
  .wb-nav a:hover {
    color: var(--wb-lime);
  }

  .wb-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 36px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--wb-lime);
    color: var(--wb-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }


  .wb-mobile-menu {
  display: none;
}

.wb-overlay {
  display: none;
}

@media (max-width: 991.98px) {
  .wb-mobile-menu {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    max-width: 86vw;
    height: 100vh;
    background: #072d38;
    padding: 24px 20px;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 100;
    flex-direction: column;
    gap: 18px;
  }

  .wb-mobile-menu.active {
    transform: translateX(0);
  }

  .wb-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 90;
  }

  .wb-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}




.wb-mobile-close {
  display: none;
}

@media (max-width: 991.98px) {
  .wb-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
}

  .wb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wb-brand-logo {
  max-height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .wb-brand-logo {
    max-height: 34px;
  }
}

@media (max-width: 575.98px) {
  .wb-brand-logo {
    max-height: 30px;
  }
}



  .wb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    align-items: center;
    gap: 20px;
    padding-top: 56px;
  }

  .wb-copy {
    max-width: 520px;
    padding-top: 18px;
  }

  .wb-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--wb-white);
  }

  .wb-title .wb-highlight {
    color: var(--wb-lime);
  }

  .wb-title-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .wb-mini-car {
    width: 100px;
    height: 39px;
    border-radius: 999px;
    background: var(--wb-lime);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(2px);
  }

  .wb-mini-car img {

     width: 75px !important;
    height: 39px;
    max-width: 100%;
    max-height: 18px;
    /* object-fit: cover; */
    display: block;
  }

  .wb-subtext {
    max-width: 390px;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--wb-text-soft);
  }

  .wb-customers {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
  }

  .wb-avatars {
    display: flex;
    align-items: center;
  }

  .wb-avatars img {
    /* width: 36px;
    height: 36px; */
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 2px solid var(--wb-bg); */
    margin-left: -8px;
  }

  .wb-avatars img:first-child {
    margin-left: 0;
  }

  .wb-customers-text strong {
    display: block;
    color: var(--wb-lime);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .wb-customers-text span {
    display: block;
    margin-top: 3px;
    color: var(--wb-white);
    opacity: 0.9;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
  }

  .wb-visual {
    position: relative;
    min-height: 380px;
  }

  .wb-circle {
    position: absolute;
    right: 140px;
    top: 34px;
    width: 335px;
    height: 335px;
    border-radius: 50%;
    background: var(--wb-lime);
  }

  .wb-plane {
    position: absolute;
    right: 42px;
    top: 8px;
    /* width: 767px; */

    max-width: 100%;
    z-index: 3;
  }

  .wb-cars {
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 500px;
    max-width: 100%;
    z-index: 4;
  }




  




  .wb-hero {
  position: relative;
   padding-bottom: 120px; 
  overflow: visible;
}

section{
  position: relative;
  z-index: 1;
}

.wb-booking-wrap{
  z-index: 20;
}

/* .wb-booking-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  z-index: 50;
  width: 100%;
} */

.wb-passenger-options{
    position:absolute;
    top:55px;
    left:0;
    width:260px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    display:none;
    z-index:100;
}

.wb-passenger-options.active{
    display:block;
}

.wb-booking-wrap {

  position: relative;
  left: 0;
  right: 0;
  
  /* margin-top: -70px; */
  bottom: -70px;
  z-index: 50;
  width: 100%;
}

.wb-booking-card {
width: min(100% - 40px, 1130px);
  margin: 0 auto;
  background: #f6f6f6;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  padding: 24px;
}

.wb-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, 0.82fr) 88px 130px;
  gap: 14px;
  align-items: end;
}

.wb-field,
.wb-search-col,
.wb-toggle-col {
  min-width: 0;
}

.wb-field label,
.wb-toggle-title {
  display: block;
  margin-bottom: 10px;
  color: #667085;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.wb-input {
  height: 48px;
  border: 1px solid #dddddd;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-width: 0;
  position: relative;
}

.wb-input.active {
  background: #ffffff;
  border-color: #0b4a59;
  box-shadow: 0 0 0 2px rgba(11, 74, 89, 0.08);
}

.wb-input i {
  color: #667085;
  font-size: 15px;
  flex: 0 0 auto;
}

.wb-input input,
.wb-input select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #344054;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wb-input input::placeholder {
  color: #667085;
}

/* Clear input button */
.wb-input .clear-input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #e0e0e0;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}

.wb-input .clear-input:hover {
  opacity: 1;
  background: #ccc;
  color: #333;
}

.wb-input .clear-date {
  right: 30px;
}

.wb-split .wb-input {
  position: relative;
}

.wb-split .wb-input .clear-input {
  right: 5px;
}

.wb-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.wb-toggle-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.wb-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}

.wb-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.wb-switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d0d5dd;
  transition: 0.25s ease;
  cursor: pointer;
}

.wb-switch-slider::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4b5563;
  transition: 0.25s ease;
}

.wb-switch input:checked + .wb-switch-slider {
  background: rgba(217, 255, 0, 0.35);
}

.wb-switch input:checked + .wb-switch-slider::before {
  transform: translateX(16px);
  background: #053b49;
}

.wb-search-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #053b49;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.wb-support-strip {
  margin-top: 110px;
}

@media (max-width: 1199.98px) {
  .wb-booking-card {
    width: min(100% - 32px, 1060px);
    padding: 20px;
  }

  .wb-booking-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.8fr) 82px 118px;
    gap: 12px;
  }

  .wb-input {
    padding: 0 12px;
  }
}

@media (max-width: 991.98px) {
  .wb-booking-wrap {
    position: relative;
    bottom: 0;
    margin-top: 32px;
  }

  .wb-booking-card {
    width: 100%;
    padding: 18px;
  }

  .wb-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .wb-search-col {
    grid-column: span 2;
  }

  .wb-support-strip {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .wb-booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wb-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .wb-search-col {
    grid-column: auto;
  }

  .wb-booking-card {
    padding: 16px;
    border-radius: 16px;
  }

  .wb-input,
  .wb-search-btn {
    height: 46px;
  }

  .wb-support-strip {
    margin-top: 28px;
  }
}




  .wb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 90;
  }

  .wb-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .wb-mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    max-width: 86vw;
    height: 100vh;
    background: #072d38;
    padding: 24px 20px;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .wb-mobile-menu.active {
    transform: translateX(0);
  }

  .wb-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
  }

  .wb-mobile-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  .wb-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .wb-mobile-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .wb-mobile-links a.active {
    color: var(--wb-lime);
  }

  @media (max-width: 1199.98px) {
    .wb-title {
      font-size: 48px;
      line-height: 56px;
    }

    .wb-circle {
      width: 300px;
      height: 300px;
      right: 45px;
    }

    .wb-plane {
      width: 390px;
      right: 25px;
    }

    .wb-cars {
      width: 450px;
    }

    .wb-booking-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 991.98px) {
    .wb-hero {
      padding-bottom: 240px;
    }

    .wb-nav {
      display: none;
    }

    .wb-mobile-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 3;
    }

    .wb-header {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      align-items: center;
      gap: 10px;
    }

    .wb-brand {
      justify-self: center;
    }

    .wb-call-btn {
      min-width: auto;
      padding: 10px 16px;
      font-size: 11px;
    }

    .wb-hero-grid {
      grid-template-columns: 1fr;
      gap: 60px;
      padding-top: 80px;
    }

    .wb-copy {
      max-width: 100%;
      text-align: center;
      padding-top: 0;
    }

    .wb-subtext {
      margin-left: auto;
      margin-right: auto;
    }

    .wb-customers {
      justify-content: center;
    }

    .wb-title-row {
      justify-content: center;
    }

    .wb-visual {
      min-height: 350px;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }

    .wb-circle {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      top: 30px;
    }

    .wb-plane {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      width: 360px;
      top: 0;
    }

    .wb-cars {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      width: 430px;
      bottom: 0;
    }

    .wb-booking-wrap {
      bottom: -170px;
    }

    .wb-booking-card {
      width: min(100% - 24px, 760px);
      padding: 18px;
    }

    .wb-booking-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767.98px) {
    .wb-hero {
      padding-top: 18px;
      padding-bottom: 290px;
    }

    .wb-container {
      width: min(100% - 24px, var(--wb-container));
    }

    .wb-brand-text {
      font-size: 13px;
    }

    .wb-call-btn {
      padding: 10px 14px;
      min-height: 40px;
      font-size: 10px;
    }

    .wb-title {
      font-size: 38px;
      line-height: 46px;
    }

    .wb-subtext {
      font-size: 15px;
      line-height: 24px;
    }

    .wb-customers-text strong {
      font-size: 24px;
    }

    .wb-visual {
      min-height: 290px;
    }

    .wb-circle {
      width: 220px;
      height: 220px;
      top: 34px;
    }

    .wb-plane {
      width: 275px;
      top: 8px;
    }

    .wb-cars {
      width: 320px;
      bottom: 0;
    }

    .wb-booking-wrap {
      /* bottom: -240px; */
    }

    .wb-booking-card {
      border-radius: 16px;
      padding: 16px;
    }

    .wb-booking-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .wb-split {
      grid-template-columns: 1fr 1fr;
    }

    .wb-search-btn {
      margin-top: 2px;
    }
  }

  @media (max-width: 575.98px) {
    .wb-header {
      grid-template-columns: 42px 1fr auto;
    }

    .wb-brand {
      gap: 10px;
    }

    .wb-brand-text {
      font-size: 12px;
    }

    .wb-call-btn {
      padding: 9px 12px;
      font-size: 9px;
      min-height: 38px;
    }

    .wb-title {
      font-size: 32px;
      line-height: 40px;
    }

    .wb-mini-car {
      width: 46px;
      height: 24px;
    }

    .wb-mini-car img {
      max-width: 28px;
      max-height: 14px;
    }

    .wb-subtext {
      font-size: 14px;
      line-height: 22px;
    }

    .wb-customers {
      flex-direction: column;
      gap: 10px;
    }

    .wb-customers-text {
      text-align: center;
    }


    .wb-visual {
      min-height: 250px;
    }

    .wb-circle {
      width: 230px;
      height: 230px;
      top: 36px;
    }

    .wb-plane {
      width: 350px;
      top: 16px;
    }

    .wb-cars {
      width: 270px;
    }

    .wb-split {
      grid-template-columns: 1fr;
    }
  }















  .wb-footer {
  background: #053b49;
  padding: 70px 0 68px;
}

.wb-footer-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.wb-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.wb-footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wb-footer-links-col ul li {
  margin-bottom: 16px;
}

.wb-footer-links-col ul li:last-child {
  margin-bottom: 0;
}

.wb-footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  transition: 0.25s ease;
}

.wb-footer-links-col ul li a:hover {
  color: #ffffff;
}

.wb-footer-newsletter {
  max-width: 420px;
  justify-self: end;
}

.wb-footer-newsletter h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.wb-footer-newsletter p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.wb-footer-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.wb-footer-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.wb-footer-input-wrap i {
  color: #053b49;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.wb-footer-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #053b49;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  box-shadow: none;
}

.wb-footer-input-wrap input::placeholder {
  color: #5f7083;
}

.wb-footer-submit {
  width: 128px;
  min-width: 128px;
  height: 40px;
  margin-right: 6px;
  border: 0;
  border-radius: 999px;
  background: #053b49;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.wb-footer-bottom {
  margin-top: 74px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.wb-footer-copy-left,
.wb-footer-copy-center {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.wb-footer-copy-center {
  text-align: center;
}

.wb-footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.wb-footer-social a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1;
  transition: 0.25s ease;
}

.wb-footer-social a:hover {
  color: #ffffff;
}

@media (max-width: 1199.98px) {
  .wb-footer {
    padding: 62px 0 60px;
  }

  .wb-footer-top {
    gap: 44px;
  }

  .wb-footer-links-grid {
    gap: 24px;
  }

  .wb-footer-newsletter h3 {
    font-size: 30px;
  }
}

@media (max-width: 991.98px) {
  .wb-footer {
    padding: 56px 0 54px;
  }

  .wb-footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wb-footer-newsletter {
    justify-self: start;
    max-width: 100%;
  }

  .wb-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    margin-top: 54px;
    padding-top: 24px;
  }

  .wb-footer-copy-center {
    text-align: left;
  }

  .wb-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .wb-footer {
    padding: 48px 0 46px;
  }

  .wb-footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .wb-footer-newsletter h3 {
    font-size: 26px;
  }

  .wb-footer-newsletter p {
    margin-bottom: 22px;
  }

  .wb-footer-form {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .wb-footer-links-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wb-footer-links-col ul li {
    margin-bottom: 12px;
  }

  .wb-footer-newsletter h3 {
    font-size: 24px;
  }

  .wb-footer-newsletter p {
    font-size: 13px;
    line-height: 1.7;
  }

  .wb-footer-form {
    flex-direction: column;
    border-radius: 18px;
    border: 0;
    background: transparent;
    overflow: visible;
    gap: 12px;
  }

  .wb-footer-input-wrap {
    width: 100%;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
  }

  .wb-footer-submit {
    width: 100%;
    min-width: 100%;
    height: 50px;
    margin-right: 0;
  }

  .wb-footer-copy-left,
  .wb-footer-copy-center {
    font-size: 13px;
  }
}




.wb-footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    margin-bottom:14px;
}

.wb-footer-about{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#bfc3cf;
    max-width:280px;
}








