/* ----- Hero ----- */
.hero {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .hero-bg {
    position: absolute;
    width: 65%;
    height: clamp(800px, 70vw, 980px);
    top: 0;
    left: 0;
    z-index: -1;
}
.hero .hero-bg img {
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 0% 100%);
    object-fit: cover;
}
.hero .hero-bg:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 0% 100%);
    background: rgba(9, 69, 89, 0.75);

}
.hero .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    position: relative;
    width: 55%;
    color: var(--white);
}
.hero-text p {
    font-size: clamp(18px, 2vw, 20px);
    margin-top: 45px;
}
.hero .hero-form {
    top: 80px;
}
.hero-form {
    width: 45%;
}