/* Product Hero */
section.page-hero {
    position: relative;
    background-size: cover;
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
section.page-hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 30%);
    z-index: -1;
}
section.page-hero .container.h-100 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.page-hero h5 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
section.page-hero h1 {
    color: #FFF;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 119.048% */
    margin-bottom: 0;
}

.contact-details .card.card-body {
    height: 100%;
    display: flex;
    justify-content: center;
}


form#blue-water-frm .form-control,form#blue-water-frm .form-select {
    height: 55px;
}
form#blue-water-frm label {
    color: #000;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
button.btn.btn-get-a-guote {
    display: flex;
    height: 46px;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: var(--Brand, #14467A);
    color: #fff;
    border: 1px solid #14467A;
    margin-left: auto;
    transition: 0.8s;
}
button.btn.btn-get-a-guote:hover {
    background-color: transparent;
    color: #000;
}

.input-error {
  outline: 2px solid red;
  outline-offset: 2px;
}


@media(max-width: 1366px) {
    section.page-hero {
        height: 500px;
    }
}

@media(max-width: 992px) {
    .contact-details .card.card-body {
        height: auto;
        margin-bottom: 25px;
    }
}

@media(max-width: 767px) {
    section.page-hero h1 {
        font-size: 44px;
    }
    section.page-hero h5 { font-size: 16px; }
    form#blue-water-frm label {
        font-size: 15px;
    }

    button.btn.btn-get-a-guote {
        margin-left: unset;
    }

    section.page-hero {
        height: 450px;
    }
}

