
:root {
    --gray: #EFEEEE;
    --primary: #034BB1;
    --secondary: #005EE2;
    --dark: #212121;
    --white: #fff;
    --warning: #FBCA3D;
}

.section--feedback {
    position: relative;
    overflow: hidden;
}
.feedback-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    object-fit: cover;
    width: 55%;
}
.section--feedback:before {
    content: '';
    position: absolute;
    background: var(--primary);
    top: 0;
    left: 55%;
    bottom: 0;
    width: 100%;
    transform: skewX(-20deg); 
    z-index: 1;
    transform-origin: top left;
    pointer-events: none;
}
.section--feedback .container {
    z-index: 2;
    position: relative;
}

.feedback {
    width: 40%;
    color: var(--white);
    float: right;
}

.feedback .form-control {
    padding: 6px 2px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    color: #fff;
    margin-bottom: 32px;
    outline: none;
    box-shadow: none;
    background: transparent;
}
.feedback .form-control:active,
.feedback .form-control:focus,
.feedback .form-control:focus:active {
    border-color: rgba(255,255,255,1);
    outline: none;
    box-shadow: none;
    background: transparent;
    color:inherit;
}

.feedback .form-control::-webkit-input-placeholder {color:#fff;}
.feedback .form-control::-moz-placeholder          {color:#fff;}
.feedback .form-control:-moz-placeholder           {color:#fff;}
.feedback .form-control:-ms-input-placeholder      {color:#fff;}


.feedback h3,
    .feedback .h3 {
        font-family: "Poppins", sans-serif;
    }

.reverse.section--feedback:before {
    left: 0;
    width: 64%;
    transform: skewX(-15deg);
}

.reverse .feedback-bg {
    left: 50%;
}

.reverse .feedback {
    float: left;
}

@media (max-width: 1799px) {

    .feedback .form-control {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {

    .section--feedback {
        overflow: hidden;
    }
    .feedback-bg {
        width: 100%;
        right: 0;
        height: auto;
        position: static;
    }
    .section--feedback:before {
        display: none;
    }
    .feedback {
        position: relative;
        width: 100%;
    }
    .feedback > * {
        position: relative;
        z-index: 2;
        background: var(--primary);
    }
    .feedback:before {
        content: '';
        position: absolute;
        background: var(--primary);
        top: -15%;
        left: -24px;
        right: -24px;
        bottom: -1000px;
        transform: skewY(10deg);
        z-index: 1;
        transform-origin: top left;
        pointer-events: none;
        margin-top: -13%;
    }

}

@media (max-width: 767px) {
    
    
}