:root {
    --swiper-pagination-bullet-width: 40px;
    --swiper-pagination-bullet-height: 4px;
}

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 {
    color: #fff;
    font-size: 55px;
    text-align: center;
}

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 h2 {
    text-align: center;
    color: #312664;
}

section.form .info {
    text-align: center;
    color: #001869;
    margin: 20px 0;
}

section.form .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

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;
    margin-right: 20px;
    margin-bottom: 40px;
}
section.form .item .desc {
    min-height: 144px;
}
section.form .item h5 {
    color: #001869;
    min-height: 72px;
}

section.form .item p.desc {
    color: #001869;
}
section.form .item .desc p:last-of-type {
    margin-bottom: 0;
}
section.form .item .link {
    margin-top: 12px;
    display: inline-block;
}
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;
}



section.videos {
    padding: 40px 0;
    text-align: center;
}

section.videos h2 {
    color: #312664;
    font-size: 40px;
}

section.videos p.desc {
    margin-top: 20px;
    color: #312664;
    font-size: 20px;
}

section.videos .items {
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.videos .items .item {
    min-width: 100px;
    max-width: 32%;
    -webkit-box-shadow: 0px 20px 72px -34px rgba(168, 156, 168, 1);
    -moz-box-shadow: 0px 20px 72px -34px rgba(168, 156, 168, 1);
    box-shadow: 0px 20px 72px -34px rgba(168, 156, 168, 1);
    border-radius: 20px;
    padding-bottom: 20px;
}

section.videos .items .item img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

section.videos .items .item .title {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #312664;
}

section.videos .items .item .link {
    color: #a73a8d;
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    section.intro {
        background-size: cover;
    }

    section.intro h1 {
        font-size: 32px;
        text-align: center;
    }

    section.form {
        margin-top: 30px;
    }

    section.videos p.desc {
        font-size: 18px;
    }

    section.videos h2 {
        font-size: 24px;
    }

    section.videos .items {
        padding-top: 30px;
        flex-direction: column;
    }

    section.videos .items .item {
        max-width: 90%;
        margin-bottom: 20px;
    }
}