:root {
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 4px;
}

section.coverage {
    padding: 40px 0;
    text-align: center;
}

section.coverage h2 {
    color: #312664;
    font-size: 40px;
}

section.coverage p.desc {
    margin-top: 20px;
    color: #312664;
    font-size: 20px;
}

section.coverage .items {
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.coverage .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.coverage .items .item img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

section.coverage .items .item .title {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #312664;
    font-weight: bold;
}

section.coverage .items .item .text {
    max-width: 80%;
    margin: 0 auto;
    font-size: 18px;
    color: #312664;
}

section.coverage .items .item .link {
    color: #a73a8d;
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
}

section.contact {
    text-align: center;
    margin-bottom: 40px;
}

section.contact .box {
    background-color: #ededed;
    border-radius: 40px;
    width: 100%;
    padding: 120px 0;
}

section.contact .box h2.title {
    font-size: 30px;
    color: #312664;
}

section.contact .box .btn-link {
    color: #fff;
    font-size: 18px;
    background-color: #a73a8d;
    padding: 20px 70px;
    margin-top: 40px;
    border-radius: 40px;
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    section.contact {
        margin-bottom: 0;
    }
    section.contact .container {
        padding: 0;
    }
    section.contact .container .box {
        border-radius: 0;
        padding: 25px 0;
    }
    section.contact .box h2.title {
        font-size: 24px;
    }
    section.contact .box .btn-link {
        width: 70%;
        padding: 10px 70px;
        margin-top: 10px;
    }
    section.coverage h2 {
        font-size: 24px;
    }
    section.coverage p.desc {
        font-size: 18px;
    }
    section.coverage .items {
        padding-top: 20px;
        flex-direction: column;
    }
    section.coverage .items .item {
        max-width: 90%;
        margin-bottom: 20px;
    }
}