body {
    font-family: "open sans", sans-serif;
    color: #606060;
}
img {
    border:none;
    max-width:100%;
    height:auto !important;
}

/** text styles**/
.orange {
    color: #F5851F;
}
.blue {
    color: #003A71;
}

.button,
.blue-button,
.download-button,
.outline {
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    letter-spacing: 1px;
    padding: 10px 30px;
    max-width: 100%;
    border-radius: 30px;
    box-sizing: border-box;
}
.button,
a.button {
    color: #FFF;
    background-color: #F5851F;
}
a.button:hover {
    color: #FFF;
}
a.blue-button {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: bold;
    color: #003A71 !important;
    padding: 10px 40px;
    background-color: #e9f6fc;
}
.download-button,
.outline {
    border: 2px solid #F5851F;
}
.outline {
    padding: 0px 10px;
}
a.button[href$='.pdf'],
.download-button {
    position: relative;
    padding: 10px;
    padding-right: 20px;
    color: #003A71;
    font-weight: bold;
    letter-spacing: 0;
}
a.button[href$='.pdf']::before,
.download-button::before {
    content:"";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image:url('https://storage.googleapis.com/kms-au.appspot.com/sites/h2w/app/2024-11-26T02%3A55%3A07.183736/img/download.svg');
    background-repeat: no-repeat;
    background-size: 1em 1em;
    background-position: center;
    margin-right: 5px;
}

/** blocks **/
.line {
    display: block;
}
.line::before {
    content:"";
    display: inline-block;
    width: 26px;
    height: 8px;
    background-color: #1aa5de;
}

.display-left,
.display-right,
.two-col,
.three-col,
.service {
    display: inline-block;
    vertical-align: top;
}

.display-left,
.display-right {
    max-width: 60%;
}
.display-left {
    float:left;
    margin-right:20px;
    margin-bottom:20px;
}
.display-right {
    float:right;
    margin-left:20px;
    margin-bottom:20px;
}
.clear-float {
    clear:both;
}

.two-col {
    width: 47%;
    margin: 1%;
}
.three-col {
    width: 30%;
    margin-right: 2%;
}

@media only screen and (max-width: 960px){
    .service {
        width: 47%;
    }
}

@media only screen and (max-width: 760px){
    a.blue-button,
    .blue-button {
        font-size: 16px;
    }
    .two-col,
    .three-col,
    .display-left,
    .display-right,
    .service {
        width: 100%;
        max-width: 100%;
        float: none;
        margin: 20px 0;
    }
    .service {
        padding: 30px 20px;
    }
}