.btn, .btn-large {
    text-decoration: none;
    color: #fff;
    background-color: forestgreen;
    text-align: center;
    letter-spacing: .5px;
    transition: .2s ease-out;
    cursor: pointer;
}
.btn:hover, .btn-large:hover {
    background-color: #02294e;
    color: #fff;
}
.btn-read-more {
    padding: 6px 25px;
    border-radius: 70px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    height: 35px;
    text-align: center;
    /* margin: 0px 10px; */
    /* background: linear-gradient(to top, #ef612f, #f36b3b); */
    background: -webkit-linear-gradient(to top, forestgreen, limegreen);
    color: white;
    border: 1px solid forestgreen;
}
.btn-read-more a:hover {
    color: white;
    border: 1px solid #02294e;
    background-color: #02294e;
}

/* -------------------------------------- */
/* rectangle  list style                  */

/* list */
.rectangle-list ol
{
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}

/* item  */
.rectangle-list ol > li
{
    position: relative;
    list-style:none; /* Disable the normal item numbering */
}

/* item hover */
.rectangle-list p
{
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* item hover */
.rectangle-list p:hover
{
    background: forestgreen;
    color: white;
}

/* number  */
.rectangle-list p:before
{
    content: counter(li);
    counter-increment: li;

    position: absolute;
    left: -2.5em;
    top: 50%;
    margin-top: -1em;

    background: #002147;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}

/* number hover */
.rectangle-list p:after
{
    position: absolute;
    left: -1em;
    top: 50%;
    margin-top: -.5em;

    content: '';
    border: .5em solid transparent;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.rectangle-list p:hover:after
{
    left: -.5em;
    border-left-color: #002147;
}

.title-h3{
    color: forestgreen;
}

/* -------------------------------------- */


.btn-outline {
    color: #4fbfa8;
    background-color: #ffffff;
    border-color: #4fbfa8;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-outline {
    color: #4fbfa8;
    background-color: #ffffff;
    border-color: #4fbfa8;
    font-weight: bold;
    border-radius: 0;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus,
.btn-outline.active {
    background: #4fbfa8;
    color: #ffffff;
    border-color: #4fbfa8;

}


.btn-colour-1 {
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 0;
    text-decoration: none;
}

.btn-colour-1:hover,
.btn-colour-1:active,
.btn-colour-1:focus,
.btn-colour-1.active {
    /* let's darken #004E64 a bit for hover effect */
    background: forestgreen;
    color: #ffffff;
    border-color: forestgreen;

}

.btn-colour-1:active a {
    text-decoration: none;
}
