.l-content-section {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.is--subheading-small {
    font-size: 24px;
    font-weight:400;
}

.c-book-online {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 30%;
    margin-top: 20px;
    margin-right: 1.5%;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 5px;
    background-color: transparent;
    -webkit-transition: box-shadow 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
    transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    text-align: left;
}
.c-book-online:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate(0px, -10px);
    -ms-transform: translate(0px, -10px);
    transform: translate(0px, -10px);
}

.c-book-online__icon-container {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 30px;
    margin-right: 3%;
    border-radius: 10px;
}
.l-flex-stretch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}
.c-book-online__content {
    position: relative;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 2;
    width: 80%;
    padding: 10px 5px 20px;
}
.text-block {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 4px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.c-book-online__icon-container svg{
    width:100%;
    max-height: 25px;
}
@media screen and (max-width: 767px) {
    .c-book-online {
        width: 80%;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .c-book-online__icon-container {
        height: 45px;
    }
    .l-flex-stretch {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media screen and (max-width: 479px) {
    .c-book-online {
        width: 100%;
    }
}