@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

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

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.cta {
  background: #419888;
  padding: 10px 40px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.cta:hover {
  background: #111;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 250px;
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.logo img {
  width: 100%;
}

main {
  padding: 50px 0;
}

section {
  margin-bottom: 50px;
}

.floatWrp {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 15px 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.20);
  background: linear-gradient(45deg,#444bf1,#272b8b 99%,#272b8b);
  color: #fff;
min-width: 200px;
}

.count {
  font-weight: 700;
}
.floatWrp .cta {font-weight: 600; font-size: 14px; padding: 10px 20px ; background: #fff; color: #111;}
.floatWrp .cta:hover {background: #111; color: #fff;}

.card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.card.selected {
  background: #a7aff5;
  color: #fff;
}
.select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.select-btn svg {
  width: 18px;
  height: 18px;
  display: none;
}
.card.selected .select-btn span {
  display: none;
}
.card.selected .select-btn {
  background: #111;
}
.card.selected .select-btn svg {
  display: block;
}
.card.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.select-btn svg {
  display: none;
  width: 16px;
  height: 16px;
}
.card.selected .select-btn span {
  display: none;
}
.card.selected .select-btn svg {
  display: inline-block;
}
.card img {
  width: 80px;
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.card h6 {
  font-size: 16px;
  font-weight: 700;
}
.card p {
  font-size: 14px;
}
.card .cta {
  padding: 8px 20px;
}
.card .cta,
.card a {
  font-size: 14px;
}
.card a {
  text-decoration: underline;
}
.submitBtnCol {display: none;}
/* Form */
.formWrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg,#444bf1,#272b8b 99%,#272b8b);
}
.formWrapper .formCol {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  padding: 60px 30px;
  background: #fff;
  max-width: 500px;
  border-radius: 30px;
  margin: 0 auto;
}
.formWrapper h4 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
  color: #111;
}

.formWrapper .cta {
  width: 100%;
}
@media(max-width:991.99px) {
 .cta {padding: 10px 20px; font-size: 14px;}
}
@media(max-width:575.99px) {
  .formWrapper .formCol {
    padding:30px 20px;
  }
   .formWrapper h4 {font-size: 22px; margin-bottom: 20px;}
   .floatWrp {margin: 0 auto; min-width: 260px}
   .card img {width: 50px;}
}