* {
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;

}
.taplink {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
}
.taplink .wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;

}
.links {
    display: flex;
    flex-direction: column;

}
.links a {
    display: flex;
    align-items: center;
    width: 100%;
    background: #000;
    color: white;
    margin-bottom: 20px;
    padding: 11px;
    border-radius: 8px;
    text-decoration: none;
}
.links a img {
    height: 30px;
    margin-right: 15px;
}
.links a.calendar {
    background-color: #42c978;
}
.links a.whatsapp {
    background-color: #34994c ;

}
.links a.call {
    background-color: #424242;

}

.links a.web {
    background-color: #44cabc;

}
.title {
    position: relative;
}

.title p {
    width: 50%;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    padding-left: 50px;
    padding-right: 50px;

}
.title p:first-of-type {
    border-right: 2px solid #44cabc;
}
.title p span {
    color: #44cabc;
}
.title {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.wrapper>img {
    width: 250px;
    margin: 0 auto;
}
body {
    background: #f5fffe;
}
@media (max-width: 768px) {
    .taplink {
        padding-top: 15px;
    }
    .title {
        display: flex;
        flex-direction: column;
    }
    .title p {
        width: 100%;
        font-size: 24px;
    }
    .title p:first-of-type {
        border-right: none;

    }
    .title p {
        position: relative;
    }
    .title p:first-of-type::before {
        bottom: -36px;
        left: calc(50% - 100px);
        display: block;
        height: 2px;
        width: 200px;
        content: '';
        background: #44cabc;
        position: absolute;
    }
}