/* HTML RESET START */
html {
    box-sizing: border-box;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
ol, ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
/* HTML RESET END */

/* CORE START */

body {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #000;
}
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
}
h3 {
    font-size: 1.75rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
h4 {
    font-size: 1.125rem;
    line-height: 2;
}
p {
    margin-bottom: 1rem;
}
a {
    color: #04abd7;
    text-decoration: none;
    transition: all 0.5s;
}
a:hover, 
a:active, 
a:visited {
    color: #04abd7;
}

ol {
    counter-reset: item;
}

section {
    padding: 3rem 0;
}

footer {
    background: #163247;
    color: #fff;
    padding: 2rem 0;
}

i {
    margin-right: 0.5rem;
    color: #04abd7;
}

/* CORE END */


/* UTILITIES START */

.general-content {
    width: 80%;
    margin: 0 auto;
}
.page-content {
    padding: 3rem 0;
}
.first-section {
    padding-top: 0;
}
.two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}
.two-col .col {
    flex-basis: 50%;
    box-sizing: border-box;
}
.two-col .col:first-child {
    padding-right: 1.5rem;
}
.two-col .col:last-child {
    padding-left: 1.5rem;
}
.two-col .col img {
    width: 100%;
}

.center-text {
    text-align: center;
    margin-bottom: 4rem;
}

a.cta {
    display: inline-block;
    padding: 0.5rem 2rem;
    font-weight: 500;
    border-width: 2px;
    border-style: solid;
    border-radius: 3px;
    white-space: nowrap;
}
a.cta-white {
    border-color: #fff;
    color: #fff;    
}
a.cta-white:hover {
    background: #fff;
    color: #04abd7;
}
a.cta-highlight {
    color: #e1792c;
    border-color: #e1792c;
}
a.cta-highlight:hover {
    background: #e1792c;
    color: #fff;
}
a.cta-highlight-act {
    background: #e1792c;
    border-color: #e1792c;
    color: #fff;
}
a.cta-highlight-act:hover {
    background: #FF903D;
    border-color: #FF903D;
}
a.cta-blue {
    border-color: #04abd7;
    color: #04abd7;
}
a.cta-blue:hover {
    color: #fff;
    background: #04abd7;
}

.title-banner {
    padding: 3rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}
/*
.title-banner::before {
    content: "";
    display: block;
    position: absolute;
    height: 168px;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.3;
    z-index: -1;
}*/
.title-banner h1 {
    margin: 0;
    color: #fff;
}

.icon-list {
    display: flex;
   /* flex-wrap: wrap;*/
}
.icon-list li {
    text-align: center;
    padding: 0.5rem;
    box-sizing: border-box;
    flex-basis: 33.33%;
}
.icon-list li i {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.icon-list li h4 {
    font-weight: 500;
    font-size: 1.4rem;
}
.icon-list li a {
    color: #222222;
}

.sec-border-top {
    border-top: 1px solid #ccc;
}
.sec-border-bottom {
    border-bottom: 1px solid #ccc;
}

.checklist li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}
.checklist li:last-child {
    margin-bottom: 0;
}
.checklist li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-left: -2rem;
    color: #04d747;
    position: absolute;
}

.major-text {
    font-size: 1.3rem;
    margin-bottom: 0;
}

ul.circle-list {
    margin: 2rem 0 2rem 1.5rem;
    padding-left: 1.5rem;
}
ul.circle-list li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}
ul.circle-list li:before {
    position: absolute;
    top: 0.4rem;
    left: -1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 0.8rem;
    content: "\f111";
    color: #04abd7;
}

.numbered-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
}
.numbered-list li {
    counter-increment: item;
    margin: 1rem 0;
}
.numbered-list li::before {
    content: counter(item) ". ";
    font-weight: bold;
    margin-right: 0.5rem;
}


/* UTILITIES END */


/* GENERAL START */

/*
header {
    border-bottom: 1px solid #e0e0e0;
}
*/
header #header-logo {
    color: #222222;
    font-weight: 700;
    white-space: nowrap;
}
header nav {
    padding: 0.5rem 0;
}
header nav .general-content {
    display: flex;
    justify-content: space-between;
}
header nav img {
    width: 250px;
}
header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
header nav ul li {
    margin-right: 2rem;
}
header nav ul li:last-child {
    margin-right: 0;
}
header nav ul li:after {
    content: "|";
    color: #e0e0e0;
    padding-left: 1rem;
}
header nav ul li:last-child:after {
    content: none;
    padding: 0;
}
header nav ul li a {
    text-transform: uppercase;
    font-weight: 500;
}

#header-contact-topbar {
    background: #04abd7;
    color: #fff;
    padding: 0.2rem 0;
    text-align: right;
}
#header-contact-topbar li {
    display: inline-block;
    margin-right: 1.5rem;
    font-weight: 500;
}
#header-contact-topbar li:last-child {
    margin-right: 0;
}
#header-contact-topbar i {
    color: #9eebff;
}

/* GENERAL END */




@media all and (max-width: 1690px) {

}
@media all and (max-width: 1280px) {

}
@media all and (max-width: 980px) {
    .general-content {
        width: 90%;
    }
}
@media all and (max-width: 768px) {
    .two-col .col {
        flex-basis: 100%;
        padding: 0 !important;
        margin-bottom: 2rem;
    }
    .two-col .col:last-child {
        padding: 0;
        margin-bottom: 0;
    }
    header nav .general-content {
        flex-direction: column;
    }
    header nav .general-content ul {
        margin-top: 1rem;
    }
    header nav ul li::after {
        content: none;
    }
    #header-logo {
        text-align: center;
    }
    ul.circle-list {
        margin-left: 0;
    }
    .icon-list li {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
    .icon-list li:last-child {
        margin-bottom: 0;
    }
    #header-contact-topbar ul {
        text-align: center;
    }
}
@media all and (max-width: 480px) {
    .general-content {
        width: 96%;
    }
    header #header-logo {
    	font-size: 1.2rem;
    }
    header nav .general-content ul {
        flex-direction: column;
        align-items: center;
    }
    header nav .general-content ul li {
        margin-right: 0;
    }
}