@import 'partials/_variables.scss';


.is-head {
    padding: 150px 0 100px;
    flex-direction: column;
    .title {
        text-align: center;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        position: relative;
        z-index: 2;
        h1{
            display: block;
            text-align: center;
            width: 100%;
            margin: 0;
        }
    }
    .form-wrapper{
        width: 100%;
        background-color: #fff;
        padding: 40px;
        border-radius: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        flex-wrap: wrap;
        min-height: 300px;
        max-width: 350px;
        box-shadow: 0 0 60px 0 rgba(29, 88, 120, 0.15);
    }

    .content{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
    }
    .d-l, .d-r{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30%;
        position: absolute;
        max-width: 120px;
        img{
            display: block;
            width: 100%;
            margin: auto;
        }
    }
    .d-l{
        top: -150px;
        left: 0px;
        opacity: .7;
    }
    .d-r{
        top: -150px;
        right: 0px;
        transform: scaleX(-1);
        opacity: .7;
    }

    .u-a{
        transform: translateY(-20px) translateX(-30px) rotate(0deg) scale(.7);
    }
    .u-b{
        transform: translateY(-90px) translateX(30px) rotate(0deg) scale(.7);
    }
    .u-c{
        transform: translateY(-180px) translateX(90px) rotate(0deg) scale(.7);
    }

    .u-d{
        transform: translateY(-20px) translateX(-30px) rotate(0deg) scale(.7);
    }
    .u-e{
        transform: translateY(-90px) translateX(30px) rotate(0deg) scale(.7);
    }
    .u-f{
        transform: translateY(-180px) translateX(90px) rotate(0deg) scale(.7);
    }
}

@media only screen and (max-width: 700px)  {
    .is-head {
        padding: 20px 0 100px;
    }
    .is-head {
        .title {
            margin-bottom: 100px;
        }
    }

    .is-head {
        .d-r {
            top: -100px;
            right: -40px;
        }
        .d-l {
            top: -100px;
            left: -40px;
        }
        .u-f {
            transform: translateY(-160px) translateX(90px) rotate(0deg) scale(.7);
        }
    }
    .is-head {
        .u-c {
            transform: translateY(-160px) translateX(90px) rotate(0deg) scale(.7);
        }
    }
}