@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.clr {
    clear: both
}

.height5 {
    height: 5px
}

.height10 {
    height: 10px
}

.height20 {
    height: 20px
}

.height30 {
    height: 30px
}

.height40 {
    height: 40px
}

.height50 {
    height: 50px
}

.height60 {
    height: 60px
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50
}

.header-height {
    height: 60px;
    width: 100%;
    clear: both
}

.height60 {
    height: 60px
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px
}

@media (max-width: 768px) {
    .form-group {
        display: block
    }
}

.form-group .field {
    flex: 1;
    display: flex;
    flex-direction: column
}

@media (max-width: 768px) {
    .form-group .field {
        margin-bottom: 15px
    }
}

.form-group .field label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #222;
    text-align: left
}

.form-group .field input,
.form-group .field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f7f7f9
}

.form-group .field input::placeholder,
.form-group .field select::placeholder {
    color: #888
}

.form-group .field input:focus,
.form-group .field select:focus {
    border-color: #11c529
}

.full-width {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column
}

.full-width label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #222;
    text-align: left
}

.full-width input {
    padding: 10px;
    border: 1px solid #cacaca;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f7f7f9
}

.full-width input::placeholder {
    color: #888
}

.full-width input:focus {
    border-color: #11c529
}

.mainFooterSection {
    background-color: #111827;
    color: white;
    padding: 0
}

.trust-quality-assurance-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: solid 1px #ddd
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    will-change: transform, opacity
}

.reveal.active {
    opacity: 1;
    transform: none
}

.fade-in {
    transform: translateY(40px)
}

.slide-left {
    transform: translateX(-60px)
}

.zoom-in {
    transform: scale(0.8)
}

.flip-up {
    transform: rotateX(90deg);
    transform-origin: bottom
}

.slide-right {
    transform: translateX(60px)
}

.flip-down {
    transform: rotateX(-90deg);
    transform-origin: top
}

.fade-up {
    transform: translateY(40px);
    opacity: 0
}

.reveal.slide-right.active,
.reveal.flip-down.active,
.reveal.fade-up.active {
    transform: none;
    opacity: 1
}

.reveal.fade-in.active,
.reveal.slide-left.active,
.reveal.zoom-in.active,
.reveal.flip-up.active {
    transform: none
}






.hungry .selection {
}

.hungry .selection label {
  display: inline-block;
  width: 100%;
  padding: 0.5em;
  cursor: pointer;
}

.hungry .selection label:hover {
  background-color: #155dfc;
  color: #fff;
}

.hungry .selection input[type=radio] {
  display: none;
}

.hungry .selection input[type=radio]:checked ~ label {
  background-color: #155dfc;
  color: #fff;
}