.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/banner-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
}

.hero .form {
    background: #1464aa;
    border-radius: 5px;
    display: flex;
    margin: auto;
}

.hero .form .left {
    padding: 30px 50px 35px;
    clip-path: polygon(0 0, 75% 0%, 100% 50%, 75% 100%, 0 100%, 0% 50%);
    background: #92d4f5;
    width: 50%;
}

.hero .form .right {
    padding: 100px 50px 0 30px;
    width: 50%;
    color: var(--white);
}

.hero .form .right p {
    color: var(--white);
}

.hero .form input,
.hero .form textarea {
    width: 70%;
    border-bottom: 1px solid var(--primary);
    background: transparent;
    border-radius: 20px;
    padding: 20px;
    font-size: 16px;
}

.hero .form .left input::placeholder {
    color: var(--black);
    opacity: .8;
}

.hero .form input[type="submit"],
.hero .form button {
    background: var(--primary);
    display: inline-block;
    color: var(--white);
    width: 35%;
    padding: 13px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 20px;
}

.hero .form button {
    background: transparent;
    border: 1px solid var(--primary);
}

.hero .form button a {
    color: var(--primary);
}

.hero .form button:hover,
.hero .form button:hover a {
    color: var(--white);
    background: var(--primary);
}

.hero .form .right div {
    margin-top: 25px;
    display: flex;
}

.hero .form .right i {
    margin-left: 50px;
    width: 150px;
    height: 150px;
}

.hero .form .right div p {
    font-size: 30px;
    color: var(--white);
    line-height: 35px;
    margin-top: 0;
}

.hero .form .right div i {
    font-size: 60px;
}

@media only screen and (max-width : 990px) {
    .hero {
        padding: 30px 50px;
        margin-top: 75px;
    }

    .hero .form .right {
        width: 100vw;
    }

    .hero .form .left {
        width: 100vw;
    }

    .hero .form {
        display: flex;
        flex-direction: column;
    }


    .hero .form input,
    .hero .form textarea {
        width: 100%;
    }

    .hero .form {
        background: transparent;
    }

    .hero .form .left {
        clip-path: polygon(0 0, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
        border-radius: 0 0 5px 5px;
    }
}

@media only screen and (max-width : 715px) {

    .hero .form input[type="submit"],
    .hero .form button {
        width: 45%;
    }
}

@media only screen and (max-width : 560px) {
    .hero {
        padding: 20px 0;
    }

    .hero .form .left {
        padding: 30px 30px 30px 12px;
    }

    .hero .form input[type="submit"],
    .hero .form button {
        width: 49%;
    }
}