:root {
    --blue-main: #0098CE;
    --blue-dark: #185A7D;
    --blue-darker: #00263E;
    --yellow-bg: #FFB648;
    --text-main: #50565A;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #50565A;
}

*:focus {
    outline: none !important;
}

a {
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #50565A;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

blockquote {
    margin: 40px 0;
}

blockquote p {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

ol li,
ul li {
    color: #50565A;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.alignright {
    float: right;
    margin-left: 1rem
}

.alignleft {
    float: left;
    margin-right: 1rem
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

/* 0x. Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 20px;
    border-radius: 0;
    transition: all .15s ease-in-out;
}

/* 0x. Primary Navigation */
.primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: #185A7D;
    transform: translateX(-100%);
    transition: transform .25s ease-in-out;
    z-index: 10010;
}

.primary-navigation.active {
    transform: translateX(0);
}

.primary-navigation .nav-inner {
    position: relative;
}

.primary-navigation .close-button {
    position: absolute;
    top: -50px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
}

.primary-navigation .close-button:before,
.primary-navigation .close-button:after {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
    background-color: #fff;
}

.primary-navigation .close-button:before {
    transform: rotate(45deg);
}

.primary-navigation .close-button:after {
    transform: rotate(-45deg);
}

.primary-navigation .scroll-wrapper {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 100px 0;
}

.primary-navigation .aspf-first-level,
.primary-navigation .aspf-second-level,
.primary-navigation .aspf-third-level {
    display: none;
}

.primary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation .aspf-main-nav {
    padding: 0 20px;
    text-transform: capitalize;
    background: rgba(0, 152, 206, 0.1);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.primary-navigation .menu-item-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.primary-navigation .menu-item-inner a {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 40px;
    padding: 8px 0;
}

.primary-navigation .aspf-first-level .aspf-menu-item {
    position: relative;
}

.primary-navigation .aspf-first-level .menu-item-inner a {
    font-size: 18px;
    font-weight: 400;
}

.primary-navigation .aspf-second-level .menu-item-inner a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 12px;
}

.primary-navigation .aspf-second-level .menu-item-inner a:before,
.primary-navigation .aspf-second-level .menu-item-inner a:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    width: 6px;
    height: 2px;
    background-color: #fff;
}

.primary-navigation .aspf-second-level .menu-item-inner a:before {
    top: 15px;
    transform: rotate(41deg);
}

.primary-navigation .aspf-second-level .menu-item-inner a:after {
    top: 18px;
    transform: rotate(-41deg);
}

.primary-navigation .menu-item-inner .menu-item-link {
    flex: 1 1 auto;
}

.primary-navigation .aspf-main-nav > .menu-item-inner .menu-item-link,
.primary-navigation .aspf-menu-item > .menu-item-inner .menu-item-link {
    max-width: calc(100% - 40px);
    padding-right: 10px;
}

.primary-navigation .aspf-third-level .menu-item-link {
    max-width: 100% !important;
    padding-right: 0 !important;
}

.primary-navigation .menu-item-icon,
.primary-navigation .menu-item-icon .icon {
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all .150s ease-in-out;
}

.primary-navigation .menu-item-icon .icon {
    height: 100%;
}

.primary-navigation .menu-item-inner .menu-item-icon.active .icon {
    transform: rotate(45deg);
}

.primary-navigation .menu-item-icon .icon:before,
.primary-navigation .menu-item-icon .icon:after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
    background-color: #fff;
    transition: all .150s ease-in-out;
}

.primary-navigation .menu-item-icon .icon:after {
    transform: rotate(90deg);
}

.primary-navigation .menu-item-inner .menu-item-icon.active .icon:before,
.primary-navigation .menu-item-inner .menu-item-icon.active .icon:after {
    background-color: var(--yellow-bg);
}

.primary-navigation .aspf-menu-item {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.primary-navigation .aspf-menu-item.active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .25);
    z-index: -1;
}

/* 0x. Header */
.site-header {}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header .custom-logo-link,
.site-header .custom-logo-link img {
    display: block;
}

.site-header .cta-button-group {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: nowrap;
    width: 100%;
}

.site-header .cta-button-group .btn {
    flex: 1 1 auto;
    width: auto;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 30px;
    text-transform: uppercase;
}

.site-header .nav-button {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
}

.site-header .nav-button .icon {
    position: relative;
    width: 18px;
    height: 2px;
    margin-right: 10px;
    background-color: var(--blue-dark);
}

.site-header .nav-button .icon:before,
.site-header .nav-button .icon:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background-color: var(--blue-dark);
}

.site-header .nav-button .icon:before {
    top: -4px;
}

.site-header .nav-button .icon:after {
    top: 4px;
}

.site-header .nav-button .text {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 0x. Titles */
.title-wrapper {

}

.page-title {
    color: var(--blue-main);
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin: 0;
}

/* 0x. Containers */
.container-narrow {
    max-width: 990px;
}

.single-categories .page-content {
    padding-top: 40px;
    padding-bottom: 60px;
}

.single-categories .sidebar-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}

.single-categories .content-wrapper {
    padding: 80px;
    margin-right: -15px;
    background-color: #fff;
}

.single-categories .page-title {
    margin-bottom: 30px;
}

.single-categories .content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.single-categories .content-header .featured-image {
    max-width: 240px;
    margin: 0 0 0 80px;
}

.single-categories .content-header .title {
    color: #50565A;
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
}

/* 0x. Embed */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 0x. Category Specific Navigation */
.aspf-catnav-wrapper .aspf-catnav-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aspf-catnav-wrapper .aspf-catnav-inner .aspf-menu-item {
    display: block;
}

.aspf-catnav-wrapper .menu-item-inner {
    display: flex;
    align-items: stretch;
}

.aspf-catnav-wrapper .menu-item-icon,
.aspf-catnav-wrapper .menu-item-icon .icon {
    position: relative;
    width: 50px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all .150s ease-in-out;
}

.aspf-catnav-wrapper .menu-item-icon .icon {
    height: 100%;
}

.aspf-catnav-wrapper .menu-item-inner .menu-item-icon.active .icon {
    transform: rotate(45deg);
}

.aspf-catnav-wrapper .menu-item-icon .icon:before,
.aspf-catnav-wrapper .menu-item-icon .icon:after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
}

.aspf-catnav-wrapper .menu-item-icon .icon:after {
    transform: rotate(90deg);
}

.aspf-catnav-wrapper .menu-item-link {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 15px 0;
    flex: 1 1 auto;
    cursor: pointer;
    transition: all .150s ease-in-out;
}

.aspf-catnav-wrapper .menu-item-has-children > .menu-item-inner > .menu-item-link {
    max-width: calc(100% - 50px);
    padding-right: 10px;
}

.aspf-catnav-wrapper .second-level .menu-item-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 0;
    max-width: 100%;
}

.aspf-catnav-wrapper .aspf-catnav-submenu {
    display: none;
    padding: 10px 20px;
}

/* 0x. Quick Links */
.aspf-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -5px;
    margin-right: -5px;
}

.aspf-quick-links .quick-link-wrapper {
    flex: 1 1 auto;
    max-width: calc(100% / 7);
    padding-left: 5px;
    padding-right: 5px;
}

.aspf-quick-links .link-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: center;
    padding: 5px;
    width: 100%;
    height: 200px;
    border: 4px solid;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
}

.aspf-quick-links .link-content .title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    height: 40px;
    margin: 5px 0;
}

/* 0x. Section: Welcome */
.section.home-page.welcome {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section.home-page.welcome .page-title {
    margin-bottom: 30px;
}

/* 0x. Section: Quick Links */
.section.home-page.quick-links {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* 0x. Section: About Us */
.section.home-page.about-us {
    padding-top: 50px;
    padding-bottom: 150px;
}

.section.home-page.about-us .section-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.section.home-page.about-us p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 0;
}

/* 0x. Section: Services */
.section.home-page.services {
    padding-top: 140px;
    padding-bottom: 140px;
    background-color: var(--yellow-bg);
}

.section.home-page.services .section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--blue-darker);
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
}

.section.home-page.services .service-box {
    text-align: center;
}

.section.home-page.services .service-box .counter-number {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

.section.home-page.services .service-box .counter-title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 30px;
}

/* 0x. Category Page */
