: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.news .btn-more {
    background-color: #a73a8d;
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    display: inline-block;
    font-size: 20px;
    margin-top: 90px;
}

section.news {
    padding: 40px 0;
    text-align: center;
}

section.news h2 {
    color: #312664;
    font-size: 40px;
    padding-bottom: 60px;
}

section.news .items {
    padding: 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

section.news .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;
    margin-bottom: 20px;
}

section.news .items .item img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

section.news .items .item .title {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #312664;
}

section.news .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.news h2 {
        font-size: 24px;
    }

    section.news .items {
        flex-direction: column;
    }

    section.news .items .item {
        max-width: 100%;
    }
}