/******KINGSTONE INSURANCE CSS******/


/**COLORS**

dk green 	=	#174822
lt grey		= 	#eeeeec
lt teal		= 	#75ad99
dk teal		= 	#477e6a
black		=	#303030

///////////////////////////
///////// css reset ///////
/////////////////////////*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

/*****Fonts and Type*****/

a {
    text-decoration: none;
    underline: none;
    color: #75ad99; /*lt teal*/
    transition: all .35s ease;
}

    a:hover {
        color: #477e6a; /*dk teal*/
        text-decoration: underline;
    }

    a.more {
        text-transform: uppercase;
        font-family: 'Muli', sans-serif;
        font-weight: bold;
        font-size: 16px;
        margin-top: 25px;
    }

        a.more::after {
            content: "\f0da";
            font-family: fontAwesome;
            padding-left: 10px;
        }

p {
    font-family: 'Muli', sans-serif;
    color: #303030;
    line-height: 1.25;
}

h1, h2 {
    font-family: 'SerifPro', serif;
    color: #174822; /*dk green*/
    line-height: 1.75;
}

h3, h4, h5, h6 {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    color: #174822; /*dk green*/
    line-height: 1.75;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
    font-weight: normal;
}

hr {
    border-top: 2px solid #75ad99; /*lt teal*/
    width: 35px;
    height: 0;
    margin: 25px auto;
}

ul, ol {
    font-family: 'Muli', sans-serif;
    color: #303030;
    line-height: 1.25;
    margin: 10px 0 10px 35px;
}

ol {
    list-style: none;
    coutner-reset: li;
}

li {
    padding: 5px 0;
}

ul li::before {
    /*		content: "•"; */
    color: #174822; /*dk green*/
    list-style-position: inside;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ol li::before {
    content: "(" counter(li);
    color: #174822; /*dk green*/
    list-style-position: inside;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    font-weight: bold;
}

ol li {
    counter-increment: li;
}

/*****tabs*****/
.tabs section {
    display: none;
    padding: 30px;
    border-top: 3px solid #174822;
}

    .tabs section p {
        font-family: 'SerifPro', serif;
    }

.tabs input {
    display: none;
}

.tabs label {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    text-align: center;
    color: #477e6a; /*dk teal*/
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 20px;
    transition: all .35s ease;
    min-width: 175px;
    background: #76ac98; /*lt teal*/
    margin: 0 -4px 0 0;
}

    .tabs label:hover {
        color: #fff;
        background: #174822; /*dk green*/
        cursor: pointer;
    }

.tabs input:checked + label {
    color: #fff;
    background: #174822; /*dk green*/
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
    display: block;
}


@media screen and (max-width: 400px) {
    .tabs label {
        padding: 15px;
    }
}

/*****buttons*****/
.btn {
    display: inline-block;
    text-align: center;
    border: 2px solid #eee;
    background: transparent;
    padding: 18px 25px;
    transition: all .35s ease;
    margin: 25px 0;
    text-transform: uppercase;
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    font-size: 16px;
}

    .btn.teal {
        border: 2px solid #75ad99; /*lt teal*/
        color: #75ad99; /*lt teal*/
    }

        .btn.teal:hover {
            background: #75ad99; /*lt teal*/
            color: #fff;
        }

    .btn.white {
        border: 2px solid #fff;
        color: #fff;
    }

        .btn.white:hover {
            background: #fff;
            color: #75ad99; /*lt teal*/
        }

    .btn.green {
        border: 2px solid #174822;
        color: #174822;
    }

        .btn.green:hover {
            background: #174822;
            color: #fff;
        }