.header_banner {
    display: flex;
    display: grid;
    place-items: center;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200%;
}

.header_banner .text-content {
    opacity: 0;
    filter: blur(20px);
    animation: fade_in .6s ease-in forwards;
}

@keyframes fade_in {
    to {
        opacity: 1;
        filter: blur(0);
    }
}


@media screen and (min-width: 768px) {
    .header_banner {
        height: 600px;
        background-size: 170%;
    }
}

@media screen and (min-width: 1024px) {
    .header_banner {
        height: 800px;
        background-size: 100%;
    }
}

.header_banner .text-content {
    color: #fff;
    font-size: clamp(0.83rem, 2rem, 3rem);
    font-weight: 700;
}

/** contact form **/
.contact-form h5 {
    font-size: 1.6rem;
}
.contact-form {
    position: relative;
    top: -20px;
    background: #f1f1f1;
    padding: 50px 0;
    margin: 20px 0;
}
.contact-form .heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form .heading span {
    text-decoration: underline;
    text-decoration-color: #cda274;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    margin: 0 0 20px 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="date"] {
    text-align: left;
    color: #5b5b5b;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input {
    border: none;
    width: 100%;
    background: none;
    padding: 0px 10px;
}

input:focus {
    border: none;
    outline: none;
}
input:active {
    border: none;
    outline: none;
}

input::placeholder {
    text-align: left;
}

.form-inputs {
    display: grid;
    gap: 8px;
    row-gap: 40px;
}

@media screen and (min-width: 1024px) {
    .form-inputs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        row-gap: 50px;
    }
}

select {
    appearance: none;
    background: #f1f1f1;
    border: none;
    width: 100%;
    color: #5b5b5b;
    text-align-last: left;
    text-align: left;
    padding: 0 0 0 10px;
}

select:active {
    border: none;
}
select:focus {
    border: none;
}

.form-inputs .input-container {
    display: flex;
    flex-direction: row;
    border-bottom: 2px solid #333;
}

.submit-btn-container {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
}

.form-container {
    margin: 30px 0 0 0;
}

.form-container button[type="submit"] {
    background-color: var(--base-color);
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-top: 20px;
    border: 1px solid var(--base-color);
    padding: 6px;
    border-radius: 8px;
}

.form-container button[type="submit"]:hover {
    color: var(--base-color);
    background: #f1f1f1;
}
