.contact-header-img {
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 150px;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom:20px;
    -webkit-clip-path: polygon(-5px 0px,calc(100% + 5px) 0px,calc(100% - 30px) 100%,30px 100% );
}

    .contact-header-img * {
        position: relative;
        z-index: 2;
    }

    .contact-header-img h3 {
        font-weight: 700;
        color: #d9e0e5;
        display:flex;
        align-items:center;
        margin:0;
    }

    .contact-header-img::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(54,84,99,.85);
    }
.f-submit-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width: 130px;
    position: absolute;
    border-radius: 50px;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    outline: none !important;
    padding:10px;
    color: rgba(255,255,255,.95);
    border: none !important;
    background-image: linear-gradient(to right bottom, #155571, #236f8e, #308bac, #3dc0c9, #4be7e7);
    box-shadow: 0 10px 30px 0px #999;
    transition: .3s;
}
    .f-submit-btn:hover {
        box-shadow: 0 0 0px transparent;
    }
