section.intro {
    padding: 0 0;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #312664;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: right;
}

section.intro h1 {
    text-align: center;
    color: #fff;
    font-size: 55px;
}

section.intro .links {
    margin-top: 20px;
}

section.intro .links .link {
    display: inline-block;
    padding: 15px 60px;
    font-size: 18px;
    border-radius: 40px;
    margin-right: 20px;
}

section.form {
    margin: 40px 0;
}

section.form .item {
    max-width: 400px;
    width: 100%;
    text-align: left;
    box-shadow: 0px 3px 6px #00000029;
    padding: 20px;
    padding-left: 30px;
    position: relative;
    border-radius: 10px;
}

section.form .item h5 {
    color: #001869;
}

section.form .item p.desc {
    color: #001869;
}

section.form .link {
    color: #a73a8d;
}

section.form .item::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 5px;
    background-color: #00a4b8;
    border-radius: 20px;
}

@media screen and (max-width: 992px) {
    section.intro {
        background-size: cover;
    }
    section.intro h1 {
        font-size: 32px;
        text-align: center;
    }
}