:root {
    --body-font-size: 15px;
    --body-font-family: 'Poppins';
    --container-width: 1199px;
    --button-font-size: var(--body-font-size);
    --button-font-family: var(--body-font-family);
    /* --headings-font-family: 'Poppins'; */
    --headings_1-font-family: var(--body-font-family);
    --headings_1-font-size: 60px;
    --headings_2-font-family: var(--body-font-family);
    --headings_2-font-size: 46px;
    --headings_3-font-family: var(--body-font-family);
    --headings_3-font-size: 36px;
    --headings_4-font-family: var(--body-font-family);
    --headings_4-font-size: 24px;
    --headings_5-font-family: var(--body-font-family);
    --headings_5-font-size: 20px;
    --headings_6-font-family: var(--body-font-family);
    --headings_6-font-size: 18px;
    --sg-color-body: #ffffff;
    --sg-color-text: #000000;
    --sg-color-accent: #051e37;
    --sg-color-accent_hover: #051e37;
    --sg-color-primary: #0a58ca;
    --sg-color-primary_hover: #0a58ca;
    --sg-color-secondary: #71a2ea;
    --sg-color-secondary_hover: #71a2ea;
    --sg-color-success: #146c43;
    --sg-color-success_hover: #146c43;
    --sg-color-info: #2dcfe9;
    --sg-color-info_hover: #2dcfe9;
    --sg-color-warning: #e9af43;
    --sg-color-warning_hover: #e9af43;
    --sg-color-danger: #bb2d3b;
    --sg-color-danger_hover: #bb2d3b;
    --sg-color-light: #fff;
    --sg-color-light_hover: #fff;
    --sg-color-dark: #000;
    --sg-color-dark_hover: #000;
    /* override bs */
    --bs-primary: var(--sg-color-primary);
    --bs-secondary: var(--sg-color-secondary);
    --bs-success: var(--sg-color-success);
    --bs-info: var(--sg-color-info);
    --bs-warning: var(--sg-color-warning);
    --bs-danger: var(--sg-color-danger);
    --bs-light: var(--sg-color-light);
    --bs-dark: var(--sg-color-dark);
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family), sans-serif;
    color: var(--sg-color-text);
    background-color: var(--sg-color-body);
}

body.has-sticky-cta-footer {
    margin-bottom: 50px;
}

[data-lazyload="true"] {
    opacity: 0;
    height: revert-layer;
    transition: all 0.35s;
}

/* .text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
} */

.btn {
    font-size: 100%;
}
.btn-group-lg > .btn, 
.btn.btn-lg {
    font-size: 140%;
}
.btn-group-sm > .btn, 
.btn.btn-sm {
    font-size: 80%;
    padding: 5px 15px;
}

.container {
    max-width: var(--container-width);
}
.container-xxl {
    max-width: 1700px;
}

.site-wrapper {
    position: relative;
    /* overflow: hidden; */
}

.site-content {
    position: relative;
    z-index: 26;
}

.box-shadow {
    box-shadow: rgba(100, 100, 100, 0.50) 0px 7px 29px 0px;
}


a {
    color: var(--sg-color-accent);
    text-decoration: none;
}
a:hover {
    color: var(--sg-color-accent_hover);
}

h1, .h1 {
    font-size: var(--headings_1-font-size);
    font-family: var(--headings_1-font-family), sans-serif;
    font-weight: bold;
}
h2, .h2 {
    font-size: var(--headings_2-font-size);
    font-family: var(--headings_2-font-family), sans-serif;
    font-weight: bold;
}
h3, .h3 {
    font-size: var(--headings_3-font-size);
    font-family: var(--headings_3-font-family), sans-serif;
    font-weight: bold;
}
h4, .h4 {
    font-size: var(--headings_4-font-size);
    font-family: var(--headings_4-font-family), sans-serif;
}
h5, .h5 {
    font-size: var(--headings_5-font-size);
    font-family: var(--headings_5-font-family), sans-serif;
}
h6, .h6 {
    font-size: var(--headings_6-font-size);
    font-family: var(--headings_6-font-family), sans-serif;
}

.dropdown-item.active, 
.dropdown-item:active {
    background-color: var(--sg-color-primary);
}

/* caret navbar dropdown */
.navbar-nav .nav-item > .nav-link .caret {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    margin-left: 5px;
}
.navbar-nav .nav-item > .nav-link .caret:before {
    position: absolute;
    /* top: 50%; */
    top: calc(50% - 4px);
    left: 0;
    right: 0;
    margin: 0 auto;
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid;
}
.navbar-nav .nav-item.is-mega-menu {
    position: static !important;
}
.navbar-nav .nav-item.is-mega-menu > .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    max-height: 90vh;
    overflow: auto;
}
.navbar-nav .nav-item.open > .dropdown-menu {
    display: block;
}


.navbar ul.nav li.nav-item.active > a {
    color: var(--sg-color-primary);
}
.navbar.style_2 ul.nav > li {
    margin: 3px;
}
.navbar.style_2 ul.nav li.nav-item > a {
    color: #000;
    background-color: #e3e3e3;
    border-radius: 25px;
    padding: 7px 25px;
}
.navbar.style_2 ul.nav li.nav-item.active > a {
    background-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}
.navbar.style_3 ul.nav > li {
    margin: 3px;
}
.navbar.style_3 ul.nav li.nav-item > a {
    border-bottom: 3px solid transparent;
    padding: 7px 20px;
}
.navbar.style_3 ul.nav li.nav-item.active > a {
    color: var(--sg-color-primary);
    border-bottom-color: var(--sg-color-primary);
}


/* dropdown */
.dropdown-menu {
    border-radius: 0;
    padding: 0;
    font-size: inherit;
}
.dropdown-menu li {
    position: relative;
}
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}
.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.bootstrap-select.form-control {
    border: 1px solid #ced4da;
}
.bootstrap-select.form-control .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* mega dropdown */
/* .is-mega-menu .dropdown-menu {
    display: block;
} */

/* form controls */
.form-group {
    display: block;
    margin-bottom: 15px;
}
.form-control {
    border-radius: 0;
    padding: 10px 15px;
    font-size: inherit;
}
.form-control:focus {
    box-shadow: none;
    outline: none;
}
select.form-control {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

/* navbar icons */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* text */
.text-accent {
    color: var(--sg-color-accent) !important;
}
.text-primary {
    color: var(--sg-color-primary) !important;
}
.text-secondary {
    color: var(--sg-color-secondary) !important;
}
.text-info {
    color: var(--sg-color-info) !important;
}
.text-success {
    color: var(--sg-color-success) !important;
}
.text-warning {
    color: var(--sg-color-warning) !important;
}
.text-danger {
    color: var(--sg-color-danger) !important;
}
.text-light {
    color: var(--sg-color-light) !important;
}
.text-dark {
    color: var(--sg-color-dark) !important;
}

/* backgrounds */
.bg-accent {
    background-color: var(--sg-color-accent) !important;
}
.bg-primary {
    background-color: var(--sg-color-primary) !important;
}
.bg-secondary {
    background-color: var(--sg-color-secondary) !important;
}
.bg-info {
    background-color: var(--sg-color-info) !important;
}
.bg-success {
    background-color: var(--sg-color-success) !important;
}
.bg-warning {
    background-color: var(--sg-color-warning) !important;
}
.bg-danger {
    background-color: var(--sg-color-danger) !important;
}
.bg-light {
    background-color: var(--sg-color-light) !important;
}
.bg-dark {
    background-color: var(--sg-color-dark) !important;
}

/* alert */
.alert a {
    color: inherit;
    text-decoration: underline;
}
.alert.alert-accent {
    background-color: var(--sg-color-accent);
    border-color: var(--sg-color-accent);
    color: var(--sg-color-light);
}
.alert.alert-primary {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}
.alert.alert-secondary {
    background-color: var(--sg-color-secondary);
    border-color: var(--sg-color-secondary);
    color: var(--sg-color-light);
}
.alert.alert-info {
    background-color: var(--sg-color-info);
    border-color: var(--sg-color-info);
    color: var(--sg-color-light);
}
.alert.alert-success {
    background-color: var(--sg-color-success);
    border-color: var(--sg-color-success);
    color: var(--sg-color-light);
}
.alert.alert-warning {
    background-color: var(--sg-color-warning);
    border-color: var(--sg-color-warning);
    color: var(--sg-color-light);
}
.alert.alert-danger {
    background-color: var(--sg-color-danger);
    border-color: var(--sg-color-danger);
    color: var(--sg-color-light);
}
.alert.alert-light {
    background-color: var(--sg-color-light);
    border-color: var(--sg-color-light);
    color: var(--sg-color-dark);
}
.alert.alert-dark {
    background-color: var(--sg-color-dark);
    border-color: var(--sg-color-dark);
    color: var(--sg-color-light);
}

/* bs4 buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px 25px 25px 25px;
    padding: 10px 25px 10px 25px;
    line-height: 1.25em;
    transition: all 0.35s;
}
.btn:active:focus,
.btn:focus,
.btn:active {
    box-shadow: none;
    outline: none;
}
.btn:not(.dropdown-toggle):hover {
    transform: scale(0.93);
}
.btn.btn-default,
.btn.btn-outline-default:hover {
    background-color: #ededed;
    border-color: #ededed;
    color: #000;
}
.btn.btn-default:hover {
    background-color: #e3e3e3;
    border-color: #e3e3e3;
}
.btn.btn-outline-default {
    border-color: #ededed;
    color: #e3e3e3;
}
.btn.btn-accent,
.btn.btn-outline-accent:hover {
    background-color: var(--sg-color-accent);
    border-color: var(--sg-color-accent);
    color: var(--sg-color-light);
}
.btn.btn-accent:hover {
    background-color: var(--sg-color-accent_hover);
    border-color: var(--sg-color-accent_hover);
}
.btn.btn-outline-accent {
    border-color: var(--sg-color-accent);
    color: var(--sg-color-accent);
}
.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn-check:active + .btn-outline-primary, 
.btn-check:checked + .btn-outline-primary, 
.btn-outline-primary.active, 
.btn-outline-primary.dropdown-toggle.show, 
.btn-outline-primary:active {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}
.btn.btn-primary:hover {
    background-color: var(--sg-color-primary_hover);
    border-color: var(--sg-color-primary_hover);
}
.btn.btn-outline-primary {
    border-color: var(--sg-color-primary);
    color: var(--sg-color-primary);
}
.btn.btn-secondary,
.btn.btn-outline-secondary:hover,
.btn-check:active + .btn-outline-secondary, 
.btn-check:checked + .btn-outline-secondary, 
.btn-outline-secondary.active, 
.btn-outline-secondary.dropdown-toggle.show, 
.btn-outline-secondary:active {
    background-color: var(--sg-color-secondary);
    border-color: var(--sg-color-secondary);
    color: var(--sg-color-dark);
}
.btn.btn-secondary:hover {
    background-color: var(--sg-color-secondary_hover);
    border-color: var(--sg-color-secondary_hover);
}
.btn.btn-outline-secondary {
    border-color: var(--sg-color-secondary);
    color: var(--sg-color-secondary);
}
.btn.btn-info,
.btn.btn-outline-info:hover,
.btn-check:active + .btn-outline-info, 
.btn-check:checked + .btn-outline-info, 
.btn-outline-info.active, 
.btn-outline-info.dropdown-toggle.show, 
.btn-outline-info:active {
    background-color: var(--sg-color-info);
    border-color: var(--sg-color-info);
    color: var(--sg-color-light);
}
.btn.btn-info:hover {
    background-color: var(--sg-color-info_hover);
    border-color: var(--sg-color-info_hover);
}
.btn.btn-outline-info {
    border-color: var(--sg-color-info);
    color: var(--sg-color-info);
}
.btn.btn-success,
.btn.btn-outline-success:hover,
.btn-check:active + .btn-outline-success, 
.btn-check:checked + .btn-outline-success, 
.btn-outline-success.active, 
.btn-outline-success.dropdown-toggle.show, 
.btn-outline-success:active {
    background-color: var(--sg-color-success);
    border-color: var(--sg-color-success);
    color: var(--sg-color-light);
}
.btn.btn-success:hover {
    background-color: var(--sg-color-success_hover);
    border-color: var(--sg-color-success_hover);
}
.btn.btn-outline-success {
    border-color: var(--sg-color-success);
    color: var(--sg-color-success);
}
.btn.btn-warning,
.btn.btn-outline-warning:hover,
.btn-check:active + .btn-outline-warning, 
.btn-check:checked + .btn-outline-warning, 
.btn-outline-warning.active, 
.btn-outline-warning.dropdown-toggle.show, 
.btn-outline-warning:active {
    background-color: var(--sg-color-warning);
    border-color: var(--sg-color-warning);
    color: var(--sg-color-light);
}
.btn.btn-warning:hover {
    background-color: var(--sg-color-warning_hover);
    border-color: var(--sg-color-warning_hover);
}
.btn.btn-outline-warning {
    border-color: var(--sg-color-warning);
    color: var(--sg-color-warning);
}
.btn.btn-danger,
.btn.btn-outline-danger:hover,
.btn-check:active + .btn-outline-danger, 
.btn-check:checked + .btn-outline-danger, 
.btn-outline-danger.active, 
.btn-outline-danger.dropdown-toggle.show, 
.btn-outline-danger:active {
    background-color: var(--sg-color-danger);
    border-color: var(--sg-color-danger);
    color: var(--sg-color-light);
}
.btn.btn-danger:hover {
    background-color: var(--sg-color-danger_hover);
    border-color: var(--sg-color-danger_hover);
}
.btn.btn-outline-danger {
    border-color: var(--sg-color-danger);
    color: var(--sg-color-danger);
}
.btn.btn-light,
.btn.btn-outline-light:hover {
    background-color: var(--sg-color-light);
    border-color: var(--sg-color-light);
    color: var(--sg-color-dark);
}
.btn.btn-light:hover {
    background-color: var(--sg-color-light_hover);
    border-color: var(--sg-color-light_hover);
}
.btn.btn-outline-light {
    border-color: var(--sg-color-light);
    color: var(--sg-color-light);
}
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    background-color: var(--sg-color-dark);
    border-color: var(--sg-color-dark);
    color: var(--sg-color-light);
}
.btn.btn-dark:hover {
    background-color: var(--sg-color-dark_hover);
    border-color: var(--sg-color-dark_hover);
}
.btn.btn-outline-dark {
    border-color: var(--sg-color-dark);
    color: var(--sg-color-dark);
}
.btn > .text {
    display: inline-block;
    text-align: left;
}
.btn > .text > span.subtext {
    display: block;
    font-size: 70%;
}
.btn > .icon {
    margin-right: 10px;
}

/* topbar */
.topbar {
    position: relative;
    padding: 10px 0;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 2;
}
.topbar.a-left {
    text-align: left;
}
.topbar.a-center {
    text-align: center;
}
.topbar.a-right {
    text-align: right;
}
.topbar p:last-of-type {
    margin-bottom: 0;
}

/* header */
header#masterhead {
    position: relative;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    /* padding: 15px 0; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
    z-index: 9999;
}
header#masterhead .primary-navbar {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}
header#masterhead .primary-navbar > .navbar--float_left,
header#masterhead .primary-navbar > .navbar--float_right {
    display: flex;
    flex: 1;
}
header#masterhead .primary-navbar > .navbar--float_right {
    justify-content: flex-end;
}
header#masterhead a:not(.btn):not(:hover) {
    color: inherit;
}
header#masterhead .navbar-brand {
    margin: 0;
}
header#masterhead .navbar-brand img {
    display: block;
    /* margin: 0 auto; */
    max-height: 100%;
}
header#masterhead .navbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
header#masterhead .navbar-ctas {
    position: relative;
    margin-left: 25px;
}
header#masterhead .navbar-ctas > .nav-cta-item {    
    padding: 5px;
}
header#masterhead .navbar-extra ul {
    margin-bottom: 0;
    padding: 0;
}
header#masterhead .navbar-wrapper .navbar-brand {
    max-width: 250px;
    flex: 0 0 250px;
}
header#masterhead.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
}
/* header#masterhead .navbar--float_right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
} */
/* header#masterhead.sticky .site-img-logo img {
    max-height: 75px;
} */

header#masterhead.header-alignment-logo_center .navbar-wrapper {
    justify-content: space-between;
    flex-wrap: wrap;
}
header#masterhead.header-alignment-logo_center .navbar-wrapper > * {
    margin: 0;
    flex: 1;
}
header#masterhead.header-alignment-logo_center .navbar-wrapper > *:first-child {
    justify-content: flex-end;
}
header#masterhead.header-alignment-logo_center .navbar-wrapper > .navbar-brand {
    text-align: center;
}
header#masterhead.header-alignment-logo_center .navbar-wrapper > .navbar-brand img {
    margin: 0 auto;
}
header#masterhead.header-alignment-logo_center .navbar-wrapper > .navbar-ctas {
    margin-top: 5px;
    flex-basis: 100%;
    justify-content: center;
}

/* header#masterhead.header-alignment-logo_right .navbar,
header#masterhead.header-alignment-logo_right .navbar-wrapper {
    flex-direction: row-reverse;
} */
header#masterhead.header-alignment-logo_right .navbar-nav {
    order: 1;
    margin-right: auto;
    margin-left: 0;
}
header#masterhead.header-alignment-logo_right .navbar-ctas {
    order: 2;
}
header#masterhead.header-alignment-logo_right .navbar-brand {
    order: 3;
}
header#masterhead.header-alignment-logo_right .navbar-brand img {
    margin-left: auto;
}

header#masterhead .sg-mega-menus-wrapper > .mega-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
header#masterhead .sg-mega-menus-wrapper > .mega-menu-dropdown.is-open {
    display: block;
}

.sg-site-navigation.navbar-nav {
    margin-left: auto;
    align-items: center;
}
.sg-site-navigation.navbar-nav .nav-link {
    color: inherit;
    padding: 7px 15px;
    text-align: center;
    transition: all 0.35s;
}
.sg-site-navigation.navbar-nav .nav-link.btn {
    margin: 5px 15px;
}
.sg-site-navigation.navbar-nav .nav-item {
    position: relative;
}
.sg-site-navigation.navbar-nav > .nav-item {
    padding: 5px;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > a.nav-link:after {
    font-family: 'FontAwesome';
    content: '\f107';
    margin-left: 5px;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    width: 250px;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s;
    z-index: 1;
}
.sg-site-navigation.navbar-nav .nav-item.has-child:hover > .sub-menu,
.sg-site-navigation.navbar-nav .nav-item.has-child.open > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu li > a {
    display: block;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu li:nth-child(even) {
    border-top: 1px solid;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu a {
    position: relative;
    background-color: var(--sg-color-accent);
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu a > span {
    position: relative;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.35s;
}
.sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu a:hover:before {
    opacity: 1;
}

.sg-site-navigation-list ul.nav-submenu {
    padding-left: 15px !important;
    margin-bottom: 5px !important;
}

/* mobile nav toggler */
.mobile-navbar-brand {
    display: none;
}
.mobile-toggler-burger {
    position: relative;
    display: none;
    padding-top: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--sg-color-primary);
    z-index: 15;
}
.mobile-toggler-burger > span {
    position: relative;
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px auto;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.35s;
}
.mobile-toggler-burger.close > span.top-bun {
  transform: rotate(-45deg);
  margin-top: 12px;
}
.mobile-toggler-burger.close > span.bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
.mobile-toggler-burger.close > span.meat {
  transform: rotate(45deg);
  margin-top: -9px;
}

/* mobile nav */
#mobile-nav {
    position: fixed;
    display: none;
    font-size: 15px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10009;
}
#mobile-nav:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 15;
}
#mobile-nav > .inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 60px 25px 25px;
    width: 320px;
    height: 100%;
    color: var(--sg-color-light);
    background-color: var(--sg-color-accent);
    transform: translateX(320px);
    transition: all 0.35s;
    overflow: auto;
    z-index: 22;
}
#mobile-nav > .inner .brand > .navbar-brand {
    max-width: 70%;
    margin: 0 auto;
    transform: none;
    display: block;
}
#mobile-nav > .inner .nav .nav-item a {
    color: inherit;
}
#mobile-nav > .inner img {
    max-width: 100%;
}
#mobile-nav > .inner .site-img-logo > img {
    display: block;
    max-height: 150px;
    margin: 0 auto;
    object-fit: contain;
}
#mobile-nav > .inner > .navi {
    position: relative;
    display: block;
    margin-top: 25px;
}
#mobile-nav > .inner > .navi > ul.nav,
#mobile-nav > .inner > .navi > ul.nav ul {
    list-style: none;
    color: inherit;
}
#mobile-nav > .inner > .navi > ul.nav li {
    width: 100%;
}
#mobile-nav > .inner > .navi > ul.nav li > a,
#mobile-nav > .inner > .navi > ul.nav li > .nav-link {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-align: left;
}
#mobile-nav > .inner > .navi > ul.nav ul {
    position: relative !important;
    transform: none !important;
    border: 0 !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
    background-color: transparent;
    padding-left: 15px;
}
#mobile-nav > .inner > .navi > ul.nav ul ul.dropdown-submenu {
    display: block !important;
    left: 0;
}
#mobile-nav > .inner > .navi > ul.nav > li:last-child {
    border-bottom: 0;
}
#mobile-nav > .inner > .navi > ul.nav li a,
#mobile-nav > .inner > .navi > ul.nav li .nav-link {
    display: block;
    padding: 10px;
    color: inherit;
    transition: all 0.35s;
}
#mobile-nav > .inner > .navi > ul.nav li a:hover {
    background-color: var(--sg-color-accent_hover);
}
#mobile-nav .close {
    position: absolute;
    top: 5px;
    left: 5px;
}
#mobile-nav .navbar-ctas .nav-cta-item {
    flex: 0 0 100%;
    max-width: 100%;
}
#mobile-nav .navbar-ctas .nav-cta-item > a {
    width: 100%;
}


#mobile-nav.open {
    display: block;
}
#mobile-nav.slideNav.open > .inner {
    transform: translateX(0);
}

.sgsc--myform .radio-field-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.sgsc--myform .form-check.form-check--btn {
    position: relative;
    padding: 0;
}
.sgsc--myform .form-check.form-check--btn > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.sgsc--myform .form-check.form-check--btn > .form-check-label {
    padding: 7px 15px;
    border: 1px solid var(--sg-color-primary);
    color: var(--sg-color-primary);
    min-width: 150px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 0 !important;
    cursor: pointer;
}
.sgsc--myform .form-check.form-check--btn > input:checked ~ .form-check-label {
    background-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}

.sgsc--myform .fg-steps-wrap .step-actions {
    justify-content: flex-end;
}
.sgsc--myform .fg-steps-wrap .step-actions .fg-step-prev {
    margin-right: auto;
}

.progress-bar {
    background-color: var(--sg-color-primary);
}

body.ap-lock {
    overflow: hidden !important;
}
.ap-popup {
    display: contents;
}
.ap-popup .ap-panel {
    display: contents;
}
.ap-popup .ap-overlay {
    display: none;
}
.ap-popup .ap-close {
    display: inline-block;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background-color: #f2f4f7;
    cursor: pointer;
    font-size: 20px;
    z-index: 22;
}
.ap-popup .ap-close:hover {
    background: #e4e7ec;
}
.ap-popup .ap-close:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
.ap-popup.is-popup {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 24px);
}
.ap-popup.is-popup .ap-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(9, 12, 16, .45);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.ap-popup.is-popup .ap-panel {
    display: block;
    position: relative;
    background-color: #fff;
    color: #000;
    width: min(92vw, 650px);
    max-height: 90vh;
    padding: 25px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
    transform: translateY(-6px);
    opacity: 0;
    transition: transform .2s ease, opacity .15s ease;
    overflow: unset;
    z-index: 1;
}
.ap-popup.is-popup .ap-panel.ap-show {
    opacity: 1;
    transform: translateY(0);
}
.ap-popup:not(.is-popup) .ap-close {
    display: none;
}

@media screen and (min-width: 768px) {
    .sg-site-navigation.navbar-nav .dropdown-menu {
        margin-top: 0;
    }
    .sg-site-navigation.navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* footer */
footer#masterfoot {
    position: relative;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    /* border-bottom: 1px solid; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0;
    z-index: 30;
}
footer#masterfoot a:not(.btn) {
    color: inherit;
}
footer#masterfoot .footer-widget {
    position: relative;
}
footer#masterfoot .footer-widget h4,
footer#masterfoot .footer-widget .h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 25px;
}
footer#masterfoot .footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* footer#masterfoot a:not(.btn),
footer#masterfoot .navbar-nav .nav-link {
    color: inherit;
} */

/* copyright */
.copyright {
    position: relative;
    padding: 25px 0;
    text-align: center;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.copyright ul {
    padding: 0;
    margin: 0 0 15px;
}
.copyright ul > li {
    display: inline-block;
    padding: 0 15px;
    border-right: 1px solid;
}
.copyright ul > li:last-child {
    border: 0;
}

.sg-section_title {
    display: block;
    margin-bottom: 30px;
}

.sg-section.sg-section-contact .sg-section_ctas a.btn {
    display: flex;
    border-radius: 0;
    font-size: 150%;
    justify-content: flex-start;
    padding: 25px 115px 25px 25px;
}
.sg-section.sg-section-contact .sg-section_ctas a.btn .icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.15);
    margin: 0;
    width: 100px;
    font-size: 150%;
    text-align: center;
}
.sg-section.sg-section-contact .sg-section_ctas a.btn .text span:not(.subtext) {
    font-size: 120%;
    font-weight: bold;
}
.sg-section.sg-section-contact .sg-section_ctas a.btn .icon > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
}

/* section */
section, .section, .sg-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-repeat: no-repeat;
}
section:before, .section:before, .sg-section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
section > *, .section > *, .sg-section > * {
    position: relative;
    z-index: 11;
}

/* swiper */
.swiper-slide {
    height: auto;
}

/* block carousels */
.sgen--blocks_carousel,
.sgen--hero_carousel {
    position: relative;
    display: -ms-flex;
    display: flex;
    --items-per-slide: 1;
    /* opacity: 0; */
}
.sgen--blocks_carousel:not(.owl-loaded),
.sgen--hero_carousel:not(.owl-loaded) {
    /* overflow-x: auto; */
    overflow: hidden;
}
.sgen--blocks_carousel:not(.owl-loaded) > *,
.sgen--hero_carousel:not(.owl-loaded) > * {
    flex: 0 0 calc(100% / var(--items-per-slide));
    max-width: calc(100% / var(--items-per-slide));
    width: 100%;
    margin-right: 15px;
}
.sgen--blocks_carousel:not(.owl-loaded) > *:not(:first-child),
.sgen--hero_carousel:not(.owl-loaded) > *:not(:first-child) {
    display: none !important;
}

.sgen--blocks_carousel .owl-stage,
.sgen--hero_carousel .owl-stage {
    display: flex;
}
.sgen--blocks_carousel .owl-stage > .owl-item > *,
.sgen--hero_carousel .owl-stage > .owl-item > * {
    height: 100%;
}

/* hero carousel */
.sgen--hero_carousel .slide-item {
    min-height: 400px;
    padding: 25px;
}

/* carousel */
.owl-theme.owl-carousel .owl-item {
    padding: 5px;
}
.owl-theme.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: -ms-flex;
    display: flex;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin: 0;
}
.owl-theme.owl-carousel .owl-nav.disabled {
    display: none;
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"] {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    border-radius: 30px;
    width: 30px;
    height: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"]:focus {
    background-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"] > span {
    position: absolute;
    font-family: 'Arial';
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"] > .fa {
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.owl-theme.owl-carousel .owl-nav > button.owl-next {
    right: 0;
}
.owl-theme.owl-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}
.owl-theme.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 3px;
}
.owl-theme.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--sg-color-accent);
}

/* cards */
.sgen--cards {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.sgen--cards.sgen--blocks_carousel {
    display: block;
    margin: 0;
}
.sgen--cards.sgen--blocks_carousel .owl-item {
    padding: 15px;
}
.sgen--cards > .card-item {
    display: flex;
    flex: 0 0 calc(calc(100% / 4) - 30px);
    max-width: calc(calc(100% / 4) - 30px);
    margin: 15px;
}
.sgen--cards .card-item {
    position: relative;
}
.sgen--cards .card-item a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.sgen--cards .card-item > .card-item-content {
    position: relative;
    text-align: left;
    background-size: cover;
    background-position: center;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
    overflow: hidden;
    padding: 15px;
}
.sgen--cards .card-item > .card-item-content .card-title > .st {
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}
.sgen--cards .card-item > .card-item-content .card-title > .t {
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
.sgen--cards .card-item .card-ctas {
    position: relative;
    z-index: 22;
}

/* posts */
.sgen--posts {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.sgen--posts.sgen--blocks_carousel {
    display: block;
    margin: 0;
}
/* .sgen--posts.sgen--blocks_carousel .owl-item {
    padding: 15px;
} */
/* .sgen--posts > .article-item {
    flex: 0 0 calc(calc(100% / 1) - 10px);
    max-width: calc(calc(100% / 1) - 10px);
    margin: 5px;
}
.sgen--posts.itemsPerRow-2 > .article-item {
    flex: 0 0 calc(calc(100% / 2) - 10px);
    max-width: calc(calc(100% / 2) - 10px);
}
.sgen--posts.itemsPerRow-3 > .article-item {
    flex: 0 0 calc(calc(100% / 3) - 10px);
    max-width: calc(calc(100% / 3) - 10px);
}
.sgen--posts.itemsPerRow-4 > .article-item {
    flex: 0 0 calc(calc(100% / 4) - 10px);
    max-width: calc(calc(100% / 4) - 10px);
}
.sgen--posts.itemsPerRow-5 > .article-item {
    flex: 0 0 calc(calc(100% / 5) - 10px);
    max-width: calc(calc(100% / 5) - 10px);
}
.sgen--posts.itemsPerRow-6 > .article-item {
    flex: 0 0 calc(calc(100% / 6) - 10px);
    max-width: calc(calc(100% / 6) - 10px);
}
.sgen--posts.itemsPerRow-7 > .article-item {
    flex: 0 0 calc(calc(100% / 7) - 10px);
    max-width: calc(calc(100% / 7) - 10px);
} */

.sgen--posts .article-item {
    position: relative;
}
.sgen--posts .article-item a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
}
.sgen--posts .article-item > .article-item-content {
    position: relative;
    text-align: left;
    overflow: hidden;
}
.sgen--posts .article-item > .article-item-content > .thumb {
    position: relative;
    padding-top: 85%;
    width: 100%;
    background-color: #e3e3e3;
    overflow: hidden;
}
.sgen--posts .article-item > .article-item-content > .thumb:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
}
.sgen--posts .article-item > .article-item-content > .thumb > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 5s;
    z-index: 1;
}
.sgen--posts .article-item:hover > .article-item-content > .thumb > img {
    transform: scale(1.2);
}
.sgen--posts .article-item > .article-item-content > .details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    z-index: 11;
}
.sgen--posts .article-item > .article-item-content > .details > * {
    position: relative;
}
/* .sgen--posts .article-item > .article-item-content .h6 {
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
} */
.sgen--posts .article-item > .article-item-content .article-title {
    font-weight: bold;
    margin: 0 0 5px;
    padding: 0;
    text-transform: uppercase;
}
.sgen--posts .article-item .article-date {
    font-weight: 500;
    font-size: 80%;
}

@media only screen and (min-width: 576px) {

    .sgen--posts .article-item.style_1 > .article-item-content {
        display: flex;
    }
    .sgen--posts .article-item.style_1 > .article-item-content > .thumb {
        padding: 0 !important;
        min-height: 250px;
        margin: 0 !important;
    }
    .sgen--posts .article-item.style_1 > .article-item-content > .thumb ~ .details {
        padding: 25px;
    }

}

.sgen--posts.archived-posts .article-item > .article-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sgen--posts.archived-posts .article-item > .article-item-content > .thumb {
    padding-top: 60%;
}
.sgen--posts.archived-posts .article-item > .article-item-content > .details {
    position: relative;
    padding: 25px;
    background-color: #fff;
    color: #000;
    flex: 1;
}

.sgen--posts.sidebar-posts {
    display: block;
    margin: 0;
}
.sgen--posts.sidebar-posts > .article-item {
    flex: 1;
    max-width: 100%;
    margin: 0 0 25px;
}

/* sgposts */
.sg-post-navigation {
    position: relative;
    display: block;
    margin-bottom: 15px;
    overflow: auto;
}
.sg-post-navigation > ul.post-nav-list {
    display: flex;
    padding: 0;
    list-style: none;
}
.sg-post-navigation > ul.post-nav-list > li a {
    position: relative;
    padding-left: 30px;
    display: inline-block;
}
.sg-post-navigation > ul.post-nav-list > li a.btn {
    display: flex;
    gap: 15px;
    text-align: left;
}
.sg-post-navigation > ul.post-nav-list > li .nav-label span {
    display: block;
}
.sg-post-navigation > ul.post-nav-list > li .nav-label span.nav-label-txt {
    font-size: 85%;
}
.sg-post-navigation > ul.post-nav-list > li .nav-label span.nav-label-title {
    font-weight: bold;
}
.sg-post-navigation > ul.post-nav-list > li.post-nav-next {
    margin-left: auto;
}

.sg-posts--category-nav {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    overflow: auto;
}
.sg-posts--category-nav > .item {
    display: inline-block;
    text-align: center;
}
.sg-posts--category-nav > .item:not(:last-child) {
    border-right: 1px solid #e3e3e3;
}
.sg-posts--category-nav > .item a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
}
.sg-posts--category-nav > .item.active a {
    background-color: var(--sg-color-primary);
    color: #fff;
}

/* article row */
.sg-article-row {
    position: relative;
    display: flex;
}
.sg-article-row > .thumb {
    position: relative;
    flex: 0 0 35%;
    max-width: 35%;
    min-height: 200px;
}
.sg-article-row > .thumb > img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sg-article-row > .details {
    position: relative;
    padding: 25px;
    flex: auto;
}
.sg-article-row .article-category {
    display: block;
    margin-bottom: 10px;
}
.sg-article-row .article-category > .cat-item {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 15px;
    line-height: 1em;
    background-color: #dee2e6;
    color: #000;
    font-size: 90%;
}
.sg-article-row .article-title .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0;
}
.sg-article-row .actions {
    margin-top: 25px;
}

/* testimonials */
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content {
    position: relative;
    text-align: center;
    margin: 0;
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 0;
    background-color: transparent;
}
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content > .testimonial-comment {
    background-color: #fff;
    color: #000;
    padding: 25px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 15px;
}
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content > .testimonial-comment:before {
    content: '“';
    display: block;
    width: 70px;
    height: 70px;
    font-size: 10rem;
    line-height: 1em;
    color: var(--sg-color-primary);
    font-family: "Arial", Georgia, Serif;
    margin: 0 auto 15px;
}
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content .testimonial-author > .t {
    font-weight: bold;
    margin: 0;
}
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content .testimonial-author > .st {
    font-size: 80%;
}
/* .sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content .testimonial-author > .h6 {
    margin: 0;
} */
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content .testimonial-image {
    position: relative;
    bottom: 0;
}
.sgen--testimonials.owl-carousel .testimonial-item > .testimonial-item-content .testimonial-image > img {
    display: inline-block;
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    border-radius: 70px;
}

/* gallery */
.sgen--gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.sgen--gallery.sgen--blocks_carousel {
    display: block;
    margin: 0;
}
.sgen--gallery.sgen--blocks_carousel .owl-item {
    padding: 15px;
}
.sgen--gallery > .gallery-item {
    flex: 0 0 calc(calc(100% / 4) - 30px);
    max-width: calc(calc(100% / 4) - 30px);
    margin: 15px;
}
.sgen--gallery .gallery-item a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.sgen--gallery .gallery-item > .gallery-item-content {
    position: relative;
    text-align: left;
}
.sgen--gallery .gallery-item > .gallery-item-content .st {
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}
.sgen--gallery .gallery-item > .gallery-item-content .t {
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
.sgen--gallery .gallery-item .item-ctas {
    position: relative;
    z-index: 22;
}

/* socials */
ul.socials {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.socials > li {
    display: inline-block;
}
ul.socials > li > a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 2em;
}

/* authentication */
.card.card-auth {
    max-width: 500px;
    margin: 0 auto;
}
.card.card-auth .form-group {
    margin-bottom: 15px;
}
.card.card-auth .float-right {
    float: right;
}

/* accordion */
.accordion {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 -7.5px;
}
.accordion > .accordion-item {
    text-align: left;
    flex: 0 0 100%;
    max-width: 100%;
    flex: 0 0 calc(calc(100% / 1) - 15px);
    max-width: calc(calc(100% / 1) - 15px);
    margin: 0 7.5px 15px;
    border: 0;
    background-color: #fff;
    color: #222;
}
.accordion > .accordion-item > .accordion-header {
    font-size: inherit;
}
.accordion > .accordion-item > .accordion-header > .accordion-button.collapsed {
    background-color: #e3e3e3;
    color: #222;
}
.accordion > .accordion-item > .accordion-header > .accordion-button {
    font-size: inherit;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
    line-height: 1.25em;
    border-radius: 0;
}
.accordion > .accordion-item > .accordion-header > .accordion-button:focus {
    outline: none;
    box-shadow: none;
}
.accordion > .accordion-item > .accordion-header > .accordion-button.collapsed:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion > .accordion-item > .accordion-header > .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion > .accordion-item .accordion-collapse {
    transition: all 0.35s;
}
.accordion > .accordion-item .accordion-collapse.collapsing {
    opacity: 0;
}

/* icon lists */
ul.icon-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.icon-list > li {
    position: relative;
    padding-top: 5px;
    padding-left: 30px;
    min-height: 30px;
}
/* ul.icon-list > li a {
    position: relative;
} */
ul.icon-list > li .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 0;
    left: 0;
}

/* list info */
ul.list-info {
    list-style: none;
    padding: 0;
}
ul.list-info > li {
    display: flex;
    margin-bottom: 5px;
    line-height: 1em;
}
ul.list-info > li > .l {
    flex: 0 0 90px;
    max-width: 90px;
    padding-right: 15px;
    margin-bottom: 5px;
}
ul.list-info > li label {
    display: block;
    font-weight: 600;
}
ul.list-info > li svg,
ul.list-info > li img {
    display: block;
    margin: 0 auto;
    height: 40px;
    width: 40px;
    object-fit: contain;
    object-position: center;
}

/* contact info */
ul.sgsc--contact_info {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.sgsc--socials {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.sgsc--socials > li {
    display: inline-block;
}
ul.sgsc--socials > li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    margin: 2px;
    border-radius: 4px;
    background-color: var(--sg-color-accent);
    color: var(--sg-color-light);
}

/* ajax form */
.ajax--form {
    position: relative;
}
.ajax--form.loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: rgba(255,255,255,0.5);
}

/* popups */
.sgpopup {
    display: none;
    position: relative;
    background-color: #fff;
    color: #000;
    min-width: 330px;
    z-index: 222;
}
.sgpopup .sgpopup-title {
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 25px;
}

/* graphical presentations */
.graphP-basic-wrapper {
  --c: var(--sg-color-primary);
    position: relative;
    display: inline-block;
    font-size: 15px;
    text-align: center;
    color: var(--c);
}
.graphP-basic-wrapper > .ui {
    display: block;
    font-size: 16px;
    line-height: 1em;
    padding: 7px 15px;
    background-color: var(--c);
    color: #fff;
}
.graphP-basic-wrapper > label {
    font-weight: bold;
}
.graphP-pie-wrapper {
  --p: 0%;
  --v: calc( ((18/5) * var(--p) - 90)*1deg);
  --c: var(--sg-color-primary);
  --w: 100px;
  --bw: 20px;
  --mw: 250px;
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: var(--mw);
    font-size: 15px;
    text-align: center;
    color: var(--c);
}
.graphP-pie-wrapper > .ui {
  position: relative;
  /* width: var(--w);
  height: var(--w); */
  width: 100%;
  padding: var(--bw);
  border-radius: 50%;
  text-align: center;
  background:
    linear-gradient(#fff,#fff) content-box,
    linear-gradient(var(--v), #f2f2f2     50%,transparent 0) 0/min(100%,(50 - var(--p))*100%),
    linear-gradient(var(--v), transparent 50%,var(--c)        0) 0/min(100%,(var(--p) - 50)*100%),
    linear-gradient(to right, #f2f2f2 50%,var(--c) 0);
}
.graphP-pie-wrapper > .ui:before {
    display: block;
    content: '';
    padding-top: 100%;
}
.graphP-pie-wrapper > .ui > span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
.graphP-pie-wrapper > label {
    font-weight: bold;
    margin: 5px 0;
}

/* progress circle and bar */
svg.ossg_radial-progress {
    height: auto;
    max-width: 250px;
    transform: rotate(-90deg);
    width: 100%;
}
svg.ossg_radial-progress circle {
    fill: rgba(0,0,0,0);
    stroke: #000;
    stroke-dashoffset: 219.91148575129; /* Circumference */
    stroke-width: 9;
}
svg.ossg_radial-progress circle.incomplete { 
    stroke: #ededed; 
}
svg.ossg_radial-progress circle.complete { 
    stroke-dasharray: 219.91148575129; /* Circumference */ 
}
svg.ossg_radial-progress text {
    fill: #000;
    font-size: 10px;
    font-weight: bold;;
    text-anchor: middle;
}
svg.ossg_radial-progress text.subtext {
    font-weight: bold;
    font-size: 8px;
    fill: var(--sg-color-primary);
}
svg.ossg_radial-progress circle { 
    stroke: var(--sg-color-primary); 
}
.ossg_animated-progress {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1em;
}
.ossg_animated-progress > .progress {
    position: relative;
    display: block;
    height: 30px;
    width: 100%;
    border-radius: 50px;
    margin: 10px auto;
    background-color: #ededed;
    overflow: hidden;
}
.ossg_animated-progress > .progress span.bar {
    position: absolute;
    height: 100%;
    display: block;
    width: 0;
    color: rgb(255, 251, 251);
    background-color: var(--sg-color-primary);
    line-height: 30px;
    text-align: end;
    padding-right: 5px;
}
.ossg_animated-progress > .progress span.amount {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.ossg_animated-progress > .title {
    position: relative;
    display: block;
    text-align: left;
    font-weight: bold;
}

.graphP-bar-wrapper {
  --p: 0%;
  --c: var(--sg-color-primary);
  --sc: var(--sg-color-primary);
  --h: 20px;
    position: relative;
    display: block;
    font-size: 15px;
    color: var(--c);
}
.graphP-bar-wrapper > .ui {
    position: relative;
    display: block;
    width: 100%;
    height: var(--h);
    background-color: #f2f2f2;
    overflow: hidden;
}
.graphP-bar-wrapper > .ui:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--p);
    height: var(--h);
    background-color: var(--c);
}
.graphP-bar-wrapper > .ui > span {
    position: absolute;
    color: var(--sc);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 12px;
    text-align: right;
    padding: 0 5px;
    line-height: var(--h);
}
.graphP-bar-wrapper > label {
    padding-right: 15px;
}

/* quantity field */
.quantityField {
    position: relative;
    display: flex;
}
.quantityField button {
    border: 1px solid #e3e3e3;
    background-color: unset;
    border-radius: 0;
    padding: 5px 15px;
}
.quantityField button:hover {
    background-color: #dfdfdf;
}
.quantityField input[type="number"] {
    border: 1px solid #e3e3e3;
    border-left: 0;
    border-right: 0;
    padding: 7px 15px;
    border-radius: 0;
    text-align: center;
    max-width: 100px;
    width: 100%;
    -moz-appearance: textfield; /* Firefox */
}
.quantityField input[type="number"]:focus {
    outline: none;
}
.quantityField input[type="number"]::-webkit-inner-spin-button,
.quantityField input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* iframe embed */
iframe {
    max-width: 100%;
    width: 100%;
}
.mapembed iframe {
    width: 100% !important;
}
.sg-embed iframe {
    max-width: 100%;
}


.pagination {
    margin-top: 25px;
}
.pagination .page-item .page-link {
    color: var(--sg-color-primary);
}
.pagination .page-item.active .page-link {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}

/* layout grid */
.sg-layoutGrid {
    display: flex;
    flex-wrap: wrap;
    --grid-spacing: 5px;
}
.sg-layoutGrid > * {
    flex: 0 0 calc(calc(100% / 1) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 1) - calc(var(--grid-spacing) * 2));
    margin: var(--grid-spacing);
}
.sg-layoutGrid.itemsPerRow-2 > * {
    flex: 0 0 calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
}
.sg-layoutGrid.itemsPerRow-3 > * {
    flex: 0 0 calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
}
.sg-layoutGrid.itemsPerRow-4 > * {
    flex: 0 0 calc(calc(100% / 4) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 4) - calc(var(--grid-spacing) * 2));
}
.sg-layoutGrid.itemsPerRow-5 > * {
    flex: 0 0 calc(calc(100% / 5) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 5) - calc(var(--grid-spacing) * 2));
}
.sg-layoutGrid.itemsPerRow-6 > * {
    flex: 0 0 calc(calc(100% / 6) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 6) - calc(var(--grid-spacing) * 2));
}
.sg-layoutGrid.itemsPerRow-7 > * {
    flex: 0 0 calc(calc(100% / 7) - calc(var(--grid-spacing) * 2));
    max-width: calc(calc(100% / 7) - calc(var(--grid-spacing) * 2));
}

.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-2 > *:nth-child(3n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}
.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-3 > *:nth-child(4n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}
.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-4 > *:nth-child(5n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}
.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-5 > *:nth-child(6n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}
.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-6 > *:nth-child(7n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}
.sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-7 > *:nth-child(8n + 1) {
    flex: 0 0 auto;
    max-width: 100%;
}

.sg-layoutGrid[data-grid-style="mansory"] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    padding: 1rem;
}
.sg-layoutGrid[data-grid-style="mansory"] > * {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    grid-column: span 2;
    margin: 0;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 1) {
    grid-column: span 4;
    grid-row: span 2;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 2) {
    grid-column: span 4;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 3),
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 4) {
    grid-column: span 2;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 5) {
    grid-column: span 4;
    grid-row: auto;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 6) {
    grid-column: span 4;
    grid-row: span 2;
}
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 7),
.sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(8n + 8) {
    grid-column: span 2;
}


/* select btn options */
.sgSelectBtnOptions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
}
.sgSelectBtnOptions > .selectoptions-item {
    padding: 2px;
    flex: 0 0 50%;
    max-width: 50%;
}
.sgSelectBtnOptions > .selectoptions-item input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
.sgSelectBtnOptions > .selectoptions-item .selectoptions-button {
    position: relative;
    padding: 5px;
    font-size: inherit;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    /* border: 1px solid #333;
    color: #333; */
    border: 1px solid var(--sg-color-primary);
    color: var(--sg-color-primary);
    display: block;
    cursor: pointer;
    width: 100%;
}
.sgSelectBtnOptions > .selectoptions-item input:checked ~ .selectoptions-button {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: var(--sg-color-light);
}

.mdp-readabler-trigger-button-box {
    z-index: 9995 !important;
}

.sg-video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #000;
    overflow: hidden;
}
.sg-video-bg-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.sg-video-bg-wrapper iframe,
.sg-video-bg-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vw;
    max-width: none;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) {
    .sticky-mobile-ctas {
        display: none;
    }
}

@media only screen and (max-width: 991px) {

    .sg-layoutGrid.itemsPerRow-4 > *,
    .sg-layoutGrid.itemsPerRow-5 > * {
        flex: 0 0 calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
        max-width: calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
    }
    .sg-layoutGrid.itemsPerRow-6 > *,
    .sg-layoutGrid.itemsPerRow-7 > * {
        flex: 0 0 calc(calc(100% / 4) - calc(var(--grid-spacing) * 2));
        max-width: calc(calc(100% / 4) - calc(var(--grid-spacing) * 2));
    }
    
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-4 > *,
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-5 > * {
        flex: 0 0 calc(calc(100% / 3) - calc(var(--grid-spacing) * 2)) !important;
        max-width: calc(calc(100% / 3) - calc(var(--grid-spacing) * 2)) !important;
    }
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-6 > *,
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-7 > * {
        flex: 0 0 calc(calc(100% / 4) - calc(var(--grid-spacing) * 2)) !important;
        max-width: calc(calc(100% / 4) - calc(var(--grid-spacing) * 2)) !important;
    }

}

@media only screen and (max-width: 767px) {

    .mobile-navbar-brand,
    .mobile-toggler-burger {
        display: block;
    }
    
    header#masterhead .primary-navbar .inner-nav {
        display: none !important;
    }
    header#masterhead .primary-navbar .navbar-wrapper {
        display: none;
    }
    header#masterhead .primary-navbar .navbar {
        padding: 5px
    }
    header#masterhead .primary-navbar .navbar .navbar-toggler {
        margin-right: 15px;
    }
    header#masterhead .primary-navbar .navbar .navbar-brand {
        max-width: 200px;
    }
    header#masterhead.sticky .primary-navbar .navbar .navbar-brand {
        max-width: 120px;
    }
    /* header#masterhead .primary-navbar .navbar .navbar-brand img {
        max-height: 100px;
    }
    header#masterhead.sticky .primary-navbar .navbar .navbar-brand img {
        max-height: 80px;
    } */
    .sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu {
        position: relative;
        display: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 15px;
    }
    .sg-site-navigation.navbar-nav .nav-item.has-child > .sub-menu > ul > li > a {
        text-align: center;
    }
    .sg-site-navigation.navbar-nav .nav-item.has-child.open > .sub-menu {
        display: block;
    }
    header#masterhead .navbar-extra {
        -ms-flex-direction: column;
        flex-direction: column;
        flex-basis: 100%;
        flex-grow: 1;
        margin: 15px 0 0;
    }
    
    /* header#masterhead .navbar-brand img {
        max-width: max-content;
    } */
    .sticky-mobile-ctas:not(.is-visible) {
        display: none;
    }
    .sticky-mobile-ctas {
        position: fixed;
        display: flex;
        justify-content: center;
        background-color: var(--sg-color-accent);
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5px;
        z-index: 9999;
        --items: 2;
    }
    .sticky-mobile-ctas > a.btn {
        position: relative;
        -ms-flex: 1;
        flex: 1;
        font-size: inherit;
        /* padding: 10px 36px 10px 45px; */
        margin: 0 5px;
        /* border-radius: 25px; */
        /* height: 40px; */
        border: 0;
        box-shadow: rgb(0 0 0 / 50%) 0px 10px 50px;
        flex: 0 0 calc(calc(100% / var(--items)) - 10px);
    }

    .sticky-mobile-ctas ~ .mdp-readabler-trigger-button-box.bottom-left,
    .sticky-mobile-ctas ~ .mdp-readabler-trigger-button-box.bottom-right {
        bottom: 60px;
    }

    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 {
        display: flex;
        width: 100%;
        background-color: #ffffff;
        color: #000;
        font-size: 14px;
        margin: 50px auto 0;
        padding: 0;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1::before {
        content: '';
        position: absolute;
        top: -25px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 140px;
        height: 50px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 80"><defs><filter id="shadow" x="-50%" y="-50%" width="200%" height="200%"><feDropShadow dx="0" dy="0" stdDeviation="4" flood-color="rgba(0,0,0,0.1)"/></filter></defs><path fill="%23ffffff" filter="url(%23shadow)" d="M0,40 C60,40 60,0 100,0 C140,0 140,40 200,40 L200,80 L0,80 Z"></path></svg>');
        background-size: cover;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item {
        position: relative;
        flex: 1;
        text-align: center;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item  > a.item-link {
        display: block;
        padding: 10px 15px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item.item-round {
        flex: 0 0 100px;
        border-left: 1px solid #e3e3e3;
        border-right: 1px solid #e3e3e3;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item.item-round > a {
        display: block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background-color: var(--sg-color-primary);
        color: #fff;
        border-radius: 50%;
        text-align: center;
        margin: -20px auto 0;
        font-size: 13px;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item .sgDutchie-cart_countBtn {
        font-size: 20px !important;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-1 > .item .sgDutchie-cart_countBtn .count {
        top: 0;
        right: 0;
        background-color: #f00;
    }
    

    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 14px;
        margin: 50px auto 0;
        padding: 5px 0;
        background-color: transparent;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item {
        position: relative;
        flex: 1;
        text-align: center;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item  > a.item-link {
        position: relative;
        display: block;
        padding: 10px 20px;
        border: none;
        background-color: #fff;
        color: #000;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin: 0 7px;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item  > a.item-link:before {
        content: '';
        position: absolute;
        top: 0;
        left: -22px;
        width: 35px;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.97 43.84"><defs></defs><path fill="%23ffffff" d="M7,1.92v.31a31.83,31.83,0,0,1,6.79,19.69A31.83,31.83,0,0,1,7,41.61v.31h9v-40Z"/></svg>') no-repeat;
        background-size: cover;
        background-position: left center;
        z-index: 1;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item > a.item-link span {
        position: relative;
        z-index: 3;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item.item-round {
        flex: 0 0 50px;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item.item-round > a {
        display: block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        background-color: var(--sg-color-primary);
        color: #fff;
        border-radius: 50%;
        text-align: center;
        padding: 0;
        margin: 0 auto;
        font-size: 13px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item > a.item-link.item-link-cta-1 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item > a.item-link.item-link-cta-1:before {
        transform: rotate(180deg);
        left: auto;
        right: -22px;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item .sgDutchie-cart_countBtn {
        font-size: 20px !important;
    }
    .sticky-mobile-ctas.sticky-mobile-ctas-theme-2 > .item .sgDutchie-cart_countBtn .count {
        top: 5px;
        right: 10px;
        background-color: #f00;
    }
    
    /* .sgen--posts.itemsPerRow-4 > .article-item,
    .sgen--posts.itemsPerRow-5 > .article-item,
    .sgen--posts.itemsPerRow-6 > .article-item,
    .sgen--posts.itemsPerRow-7 > .article-item {
        flex: 0 0 calc(calc(100% / 3) - 10px);
        max-width: calc(calc(100% / 3) - 10px);
    } */

    .sg-layoutGrid.itemsPerRow-3 > *,
    .sg-layoutGrid.itemsPerRow-4 > *,
    .sg-layoutGrid.itemsPerRow-5 > * {
        flex: 0 0 calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
        max-width: calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
    }
    .sg-layoutGrid.itemsPerRow-6 > *,
    .sg-layoutGrid.itemsPerRow-7 > * {
        flex: 0 0 calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
        max-width: calc(calc(100% / 3) - calc(var(--grid-spacing) * 2));
    }
    
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-3 > *,
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-4 > *,
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-5 > * {
        flex: 0 0 calc(calc(100% / 2) - calc(var(--grid-spacing) * 2)) !important;
        max-width: calc(calc(100% / 2) - calc(var(--grid-spacing) * 2)) !important;
    }
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-3 > *:nth-child(3n + 1),
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-4 > *:nth-child(3n + 1),
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-5 > *:nth-child(3n + 1) {
        flex: 0 0 auto !important;
        max-width: 100% !important;
    }
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-6 > *,
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-7 > * {
        flex: 0 0 calc(calc(100% / 2) - calc(var(--grid-spacing) * 2)) !important;
        max-width: calc(calc(100% / 2) - calc(var(--grid-spacing) * 2)) !important;
    }
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-6 > *:nth-child(5n + 1),
    .sg-layoutGrid[data-grid-style="hero_tiles"].itemsPerRow-7 > *:nth-child(5n + 1) {
        flex: 0 0 auto !important;
        max-width: 100% !important;
    }

    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 1) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 2) {
        grid-column: span 4;
        grid-row: auto;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 3) {
        grid-column: span 4;
        grid-row: auto;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 4) {
        grid-column: span 4;
        grid-row: auto;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 5) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(6n + 6) {
        grid-column: span 4;
        grid-row: auto;
    }

}

@media only screen and (max-width: 575px) {

    body {
        font-size: calc(var(--body-font-size) / 1.1);
    }
    h1, .h1 {
        font-size: calc(var(--headings_1-font-size) / 1.35);
    }
    h2, .h2 {
        font-size: calc(var(--headings_2-font-size) / 1.25);
    }
    h3, .h3 {
        font-size: calc(var(--headings_3-font-size) / 1.25);
    }
    h4, .h4 {
        font-size: calc(var(--headings_4-font-size) / 1.05);
    }
    h5, .h5 {
        font-size: calc(var(--headings_5-font-size) / 1.05);
    }
    h6, .h6 {
        font-size: calc(var(--headings_6-font-size) / 1);
    }
    
    .fancybox-content {
        padding: 15px;
    }

    section, .section, .sg-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sgen--cards > .card-item {
        flex: 0 0 calc(calc(100% / 1) - 30px) !important;
        max-width: calc(calc(100% / 1) - 30px) !important;
        margin: 0 15px 15px;
    }

    .accordion > .accordion-item {
        flex: 0 0 calc(calc(100% / 1) - 15px) !important;
        max-width: calc(calc(100% / 1) - 15px) !important;
    }

    .sgen--posts {
        display: block;
        margin: 0;
    }
    /* .sgen--posts.itemsPerRow-2 > .article-item,
    .sgen--posts.itemsPerRow-3 > .article-item,
    .sgen--posts.itemsPerRow-4 > .article-item,
    .sgen--posts.itemsPerRow-5 > .article-item {
        flex: 100%;
        max-width: 100%;
    }
    .sgen--posts.itemsPerRow-6 > .article-item,
    .sgen--posts.itemsPerRow-7 > .article-item {
        flex: 0 0 calc(calc(100% / 2) - 10px);
        max-width: calc(calc(100% / 2) - 10px);
    } */

    header#masterhead .primary-navbar {
        flex-direction: column;
    }
    header#masterhead .primary-navbar > .navbar--float_left,
    header#masterhead .primary-navbar > .navbar--float_right {
        align-self: unset;
        width: 100%;
        justify-content: unset;
    }
    
    .navbar-nav .nav-item.dropdown > .nav-link {
        display: flex !important;
        padding-right: 50px !important;
    }
    .navbar-nav .nav-item > .nav-link {
        position: relative;
    }
    .navbar-nav .nav-item > .nav-link > .caret {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        margin-left: auto !important;
        z-index: 2;
    }

    .sg-article-row {
        display: block;
    }
    .sg-article-row > .thumb {
        position: relative;
        flex: auto;
        max-width: 100%;
        margin-bottom: 15px;
        overflow: hidden;
    }
    .sg-article-row > .details {
        padding: 15px;
    }
    
    .sg-layoutGrid.itemsPerRow-2 > *,
    .sg-layoutGrid.itemsPerRow-3 > *,
    .sg-layoutGrid.itemsPerRow-4 > *,
    .sg-layoutGrid.itemsPerRow-5 > * {
        flex: 100%;
        max-width: 100%;
    }
    .sg-layoutGrid.itemsPerRow-6 > *,
    .sg-layoutGrid.itemsPerRow-7 > * {
        flex: 0 0 calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
        max-width: calc(calc(100% / 2) - calc(var(--grid-spacing) * 2));
    }

    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(3n + 1) {
        grid-column: span 8;
        grid-row: span 2;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(3n + 2) {
        grid-column: span 4;
        grid-row: auto;
    }
    .sg-layoutGrid[data-grid-style="mansory"] > *:nth-child(3n + 3) {
        grid-column: span 4;
        grid-row: auto;
    }

    .sticky-mobile-ctas > a.btn {
        padding: 1rem;
    }

}