.contact-section {
    position: relative;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 30px 225px;
}

.contact-card {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 922px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    border-radius: 4px;
    z-index: 2;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 30px;
    border-right: 1px solid #74747433;
}

.contact-note {
    font-size: 18px;
    color: #000000;
    max-width: 320px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: 'Bebas Neue';
}

.contact-title {
    font-size: 54px;
    font-weight: 700;
    margin-top: 20px;
}

.contact-form {
    width: 100%;
}

.form-row p{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-right {
    min-width: 493px;
}
.contact-form select{
    color: #9D9898;
}

.contact-form select.has-value {
  color: #000;
}

.contact-form select option {
    color: #000;
}
.wpcf7 form .wpcf7-response-output,
.wpcf7-not-valid-tip{
    font-family: "Inter";
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 8px 10px 0;
    border: none;
    border-bottom: 1px solid #74747433;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    outline: none;
    font-family: 'Inter';
    background: transparent;
}

.contact-form textarea {
    resize: none;
    height: 85px;
    margin-bottom: 20px;
}

.contact-form button {
    /* background: #0b4fa3; */
    background: var(--off-season-landing-orange);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.contact-form button:hover {
    background: #083b7c;
}

.cf7-submit input {
    /* background: #0b4fa3; */
    background: var(--off-season-landing-orange);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Inter';
    max-width: 190px;
}

/* Standard */
.wpcf7-form-control::placeholder {
  color: #9D9898;
  opacity: 1; /* Firefox fix */
}

/* Chrome, Edge, Safari */
.wpcf7-form-control::-webkit-input-placeholder {
  color: #9D9898;
}

/* Firefox */
.wpcf7-form-control::-moz-placeholder {
  color: #9D9898;
}

/* IE / old Edge */
.wpcf7-form-control:-ms-input-placeholder {
  color: #9D9898;
}



/* Responsive */
@media (max-width: 1024px) {
    .contact-right {
        min-width: auto;
    }
    .contact-section{
        padding: 65px 30px 150px;
    }
}

@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-left {
        text-align: center;
        align-items: center;
        padding-right: 0;
        border-right: none;
    }

    .contact-note {
        max-width: 100%;
    }
    .contact-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .form-row p{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 30px;
    }
    .contact-section {
        padding: 65px 15px 100px;
    }
    .contact-title {
        font-size: 38px;
    }
    .contact-card{
        gap: 25px;
    }
    .cf7-submit input{
        max-width: 100%;
    }
}