﻿:root {
    --purple: #4e2683;
    --white: #FFFFFF;
    --green: #006E87;
    --purple-tint: #E9E4F1;
    --blue-tint: #E2E7ED;
    --dark-grey: #221138;
    --mid-grey: #585857;
    --light-grey: #F7F7F7;
}

@font-face {
    font-family: 'Interstate';
    src: url('../../assets/fonts/Interstate-Light.woff') format('woff'),
        url('../../assets/fonts/Interstate-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Interstate';
    src: url('../fonts/Interstate-Bold.woff') format('woff'),
        url('../fonts/Interstate-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Interstate';
    src: url('../fonts/Interstate-Regular.woff') format('woff'),
        url('../fonts/Interstate-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/*@font-face {
    font-family: interstate-regular;
    src: url(../fonts/Interstate-regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: interstate-bold;
    src: url(../fonts/Interstate-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: interstate-light;
    src: url(../fonts/Interstate-light.ttf);
    font-weight: 300;
}*/

h1 {
    /* font-size: 48px;
    line-height: 58px;
    font-family: interstate-bold;*/
    font-size: 2.5rem;
    line-height: 1.1;
    font-family: 'Interstate';
    color: var(--dark-grey);
}

h2 {
    font-size: 30px;
    line-height: 38px;
    font-family: 'Interstate';
    font-weight: bold;
    color: var(--dark-grey);
}

h3 {
    font-size: 28px;
    line-height: 34px;
    font-family: 'Interstate';
    font-weight: bold;
    color: var(--dark-grey);
}

h4 {
    font-size: 24px;
    line-height: 30px;
    font-family: 'Interstate';
    font-weight: bold;
    color: var(--dark-grey);
}

h5 {
    font-size: 21px;
    line-height: 26px;
    font-family: 'Interstate';
    font-weight: bold;
    color: var(--dark-grey);
}

h6 {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Interstate';
    color: var(--dark-grey);
}

.large-paragraph p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Interstate';
    color: var(--dark-grey);
}

p, a, span, li, div, b {
    font-size: 16px;
    line-height: 27px;
    font-family: 'Interstate';
    color: var(--mid-grey);
}
label {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Interstate';
    color: var(--mid-grey);
}
strong {
    font-family: 'Interstate';
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
}
sup {
    font-family: 'Interstate';
}

ul {
    padding-left: 1.5rem;
}

ul li {
    position: relative;
}

ul li:before {
    content: "";
    position: absolute;
    background-image: url("../../assets/img/simple-arrow-right.png");
    left: -1.5rem;
    top: 8px;
    background-size: contain;
	height: 10px;
	width: 14px;
}

#tabs ul li:before {
    display: none;
}

.text-purple {
    color: var(--purple) !important;
}
.text-mid-grey {
    color: var(--mid-grey) !important;
}

ul.bullets-purple {
    padding-left: 2.5rem;
}

ul.bullets-green {
	padding-left: 2.5rem;
}

ul.bullets-purple li:before {
	background-image: url("../../assets/img/purple-shape-bullet.svg");
	width: 32px;
	height: 26px;
	top: 0;
	left: -2.5rem;
}

ul.bullets-green li:before {
	background-image: url("../../assets/img/green-shape-bullet.svg");
	width: 32px;
	height: 20px;
	top: 0;
	left: -2.5rem;
}

ol {
   list-style: none;
   counter-reset: item;
   position: relative;
   padding-left: 45px;
 }
ol li {
   counter-increment: item;
   margin-bottom: 5px;
   position: relative;
   margin-bottom: 1rem;
 }
ol li:before {
   margin-right: 10px;
   content: counter(item);
   background: var(--purple);
   border-radius: 100%;
   color: white;
   width: 35px;
   height: 35px;
   font-size: 16px;
   text-align: center;
   display: inline-block;
   padding-top: 4px;
   position: absolute;
   left: -45px;
   top: -4px;
 }

#hamburger-sidenav li:before {
    display: none;
}

@media(max-width: 576px) {
    h1 {
        font-size: 28px;
        line-height: 38px;
    }
}

p a, h5 a{
    font-size: inherit;
}

.mt-6 {
    margin-top: 5rem !important;
}

.pt-6{
    padding-top: 5rem !important;
}
.pb-6{
    padding-bottom: 5rem !important;
}