/* Secondary */

header {
    height: 70vh
}

header > div p {
    visibility: visible;
    opacity: 1;
    position: relative;
    margin-bottom: 0
}

header .slider-images {
    position: fixed;
}

header .slider-images img {
    -o-object-position: center;
    object-position: center;
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

section {
    background: #fff
}

h3 {
    color: #0087ff
}

.two div {
    width: 48.5%;
}

section > .flex-2 {
    position: relative;
    z-index: 5
}

form:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    left: -28%;
    width: 50%;
    height: 80%;
    border-radius: 25% 50% / 60% 50%;
    -webkit-transform: rotate(30deg);
    transform: rotate(-45deg);
    background: rgba(235, 104, 114, 0.2);
}

form * {
    position: relative;
    z-index: 5
}

input:not([type='submit']),
select,
textarea {
    display: block;
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 4px;
    background: #fff;
    font-family: 'Poppins';
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    -webkit-box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1);
    box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1)
}

textarea {
    min-height: 125px;
    overflow: auto;
    resize: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    -webkit-box-shadow: 5px 5px 20px rgba(0, 135, 255, 0.12), -5px -5px 20px rgba(0, 135, 255, 0.12);
    box-shadow: 5px 5px 20px rgba(0, 135, 255, 0.12), -5px -5px 20px rgba(0, 135, 255, 0.12)
}

input[type='submit'] {
    border: none;
    cursor: pointer;
    margin-top: 5%
}

input[type='file'] {
    display: none;
}

label:not(.files) {
    font-family: 'Poppins';
    font-weight: 600;
    color: #0087ff;
    margin: 8px 0;
    display: block;
}

label.files {
    font-family: 'Poppins';
    padding: 9px;
    border-radius: 4px;
    border: 2px dashed;
    color: #0087ff;
    display: block;
    cursor: pointer;
}

label.files i {
    margin-right: 10px
}

@media (max-width: 768px) {
    header {
        height: 40vh
    }
    
    section:first-of-type > .flex-2:first-of-type {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    
    .two > div {
        width: 100%
    }
}