/* .section-contact {
    background: linear-gradient(220deg, rgba(30, 33, 66, 1) 0%, rgba(26, 45, 135, 1) 34%, rgba(100, 197, 234, 1) 94%) !important;
} */
.section-contact {
    background-image: linear-gradient(219deg, rgba(30, 33, 66, 1) 0%, rgba(26, 45, 135, 1) 46%, rgba(100, 197, 234, 1) 94%),
        url('../img/contact-bg.png');
    /* background-size: cover; */
    background-position: right !important;
}

.section-contact .btn {
    color: white !important;
}

/* .section-contact .section-contact-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
} */

/* #booking {
    background-image: url('../img/contact-bg.png');
    background-size: cover;
    background-position: center;
} */

/* #booking::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(190, 216, 250, 0.643);
} */

.booking-form {
    background-color: #fefefe;
    /* Fallback solid color for non-supporting browsers */
    /* background: linear-gradient(219deg, rgba(30, 33, 66, 0.9) 0%, rgba(26, 45, 135, .9) 36%, rgba(100, 197, 234, 0.8) 94%); */
    /* Adds the glassy blur effect */
    -webkit-backdrop-filter: blur(90%);
    /* For Safari compatibility */
    backdrop-filter: blur(90%);

    padding: 50px;
    padding-top: 60px !important;
    -webkit-box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 20px -5px var(--main-color);
    /* opacity: 0.4; */
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.5s;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    /* display: inline-block; */
    text-align: center;
    box-shadow: 1px 2px 0px 0px var(--main-color);
    position: relative !important;
    z-index: 2 !important;
}

.booking-form .form-control {
    /* background-color: #ebecee; */
    border-radius: var(--radius);
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color);
    /* color: white; */
    font-size: 14px;
}

.booking-form .form-control::-webkit-input-placeholder {
    color: rgba(62, 72, 92, 0.3);
}

.booking-form .form-control:-ms-input-placeholder {
    color: rgba(62, 72, 92, 0.3);
}

.booking-form .form-control::placeholder {
    color: rgba(62, 72, 92, 0.3);
}

.booking-form input[type="date"].form-control:invalid {
    color: rgba(62, 72, 92, 0.3);
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-form select.form-control+.select-arrow {
    /* position: absolute;
    right: 0px;
    bottom: 4px; */
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: var(--main-color);
    /* color: var(--secondary-color); */
    font-size: 14px;
}

/* .booking-form select.form-control+.select-arrow:after {
    content: '\279C';
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
} */

/* .booking-form .form-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 6px;
    margin-left: 7px;
} */

.booking-form .submit-btn {
    display: inline-block;
    color: #fff;
    background: var(--bg-gradient);
    font-weight: 700;
    width: 95%;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 1px #fff;
    outline: 1px solid var(--main-color);
    outline-offset: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
    opacity: 0.9;
}

/* .booking-cta {
    margin-top: 80px;
    margin-bottom: 30px;
} */

.booking-cta h1 {
    font-size: 62px;
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 800;
    font-family: var(--main-font);
}

.booking-cta h2 {
    font-size: 36px;
    font-family: var(--sub-title);
}

.booking-cta p {
    font-size: 18px;
    font-weight: 400;
    color: #eeeeee;
    font-family: var(--body-font);
}

/* .contact__form h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
} */


.contact__form form input, .drop-input {
    height: 50px;
    width: 100%;
    padding-inline-start: 20px;
    font-size: 14px;
    color: var(--main-color);
    /* color: white; */
    border: 1px solid var(--main-color);
    /* border: 1px solid var(--secondary-color); */
    border-radius: var(--radius-ms) !important;
    margin-bottom: 14px;
    background-color: transparent;
}



.contact__form form input::-webkit-input-placeholder {
    color: var(--main-color);
}

.contact__form form input::-moz-placeholder {
    color: var(--main-color);
}

.contact__form form input:-ms-input-placeholder {
    color: var(--main-color);
}

.contact__form form input::-ms-input-placeholder {
    color: var(--main-color);
}

.contact__form form input::placeholder {
    color: var(--main-color);
}

.contact__form form textarea {
    height: 130px;
    width: 100%;
    padding-inline-start: 20px;
    padding-top: 12px;
    font-size: 14px;
    color: var(--main-color);
    /* color: white; */
    /* border: 1px solid var(--secondary-color); */
    border: 1px solid var(--main-color);
    border-radius: var(--radius-ms);
    margin-bottom: 14px;
    /* resize: none; */
    background-color: transparent;
}

.contact__form form textarea::-webkit-input-placeholder {
    color: var(--main-color);
}

.contact__form form textarea::-moz-placeholder {
    color: var(--main-color);
}

.contact__form form textarea:-ms-input-placeholder {
    color: var(--main-color);
}

.contact__form form textarea::-ms-input-placeholder {
    color: var(--main-color);
}

.contact__form form textarea::placeholder {
    color: var(--main-color);
}

.social_contact {
    color: white !important;
    margin-right: .5rem !important;
}

.social_contact:hover i {
    color: var(--secondary-color) !important;
}

path:nth-child(odd) {
    stroke: #fff !important;
}

path:nth-child(even) {
    stroke: #bfecfe !important;
}

@media screen and (max-width: 992px) {
    .svg {
        margin-top: 7rem !important;
    }

    /* .booking-form {
        padding: 30px;
    } */

}

@media screen and (max-width: 992px) {
    .svg {
        margin-top: 7rem !important;
    }
}

@media screen and (max-width: 600px) {
    .svg {
        margin-top: 20rem !important;
    }
    .booking-form .submit-btn {

        padding: 7px 15px;
    }
    .booking-form {

    padding: 25px;
}
}
@media screen and (max-width: 768) {
.booking-cta h1 {
    font-size: 40px;
}

.booking-cta h2 {
    font-size: 26px;
}
}
