/* Colors */
:root {
    --color-primary: #004282; /* dark blue */
    --color-secondary: #7fa3d5; /* light blue */
	--color-modal-bg: rgba(0, 27, 53, 0.9); 
	--color-input-border: #ccc; 
	--color-input-border-focus: rgba(0, 66, 130, 1); 
	--color-input-border-focus-box-shadow: rgba(0, 66, 130, 0.25); 
	--color-call-icon-bg: #ebf1f7;
	--color-call-icon-bg-darker: #c9d8ed;

    --filter-primary: brightness(0) saturate(100%) invert(14%) sepia(85%) saturate(1649%) hue-rotate(190deg) brightness(95%) contrast(102%); /* black to blue */
	--filter-primary-hover: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(0%) hue-rotate(30deg) brightness(102%) contrast(103%); /* black to white */
}



/* General */
@media screen and (max-width: 575px) {
	#sp-main-body {
		padding: 40px 0 30px 0;
	}
}

@media screen and (min-width: 576px) and (max-width: 767px) {
	#sp-main-body {
		padding: 45px 20px;
	}
}

@media screen and (min-width: 768px) {
	#sp-main-body {
		padding: 60px 30px;
	}
}

#sp-main-body > .container {
	animation-duration: 800ms;
    animation-name: fadeIn;
}

hr {
	border-top: 1px solid #ccc!important;
	margin-top: 35px !important;
    margin-bottom: 35px !important;	
	opacity: 1;
}

.sp-pagebuilder-page-edit {
	display: none!important;
}

.article-list .article .featured-article-badge, 
.article-details .featured-article-badge,
.article-can-edit {
    display: none!important; 
}

.com-finder p {
    margin-bottom: 1rem!important;
}



/* Fonts */
@media screen and (max-width: 575px) {
	body {
		font-size: 17px!important;
	}
}

a {
	font-weight: 600;
}

a:focus, a:active {
	color: #404040;
}

::selection {
  background-color: var(--color-secondary);
  color: #fff; 
}

.error-code, .coming-soon-number {
    color: #D30000!important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
}

body.view-article .h2:not([itemprop="headline"], .sppb-addon-title), body.view-article .h3:not(.sppb-addon-title), body.view-article .h4:not(.sppb-addon-title), body.view-article .h5:not(.sppb-addon-title), body.view-article .h6:not(.sppb-addon-title) {
	margin-top: 1.75rem;
}

@media screen and (max-width: 399px) {
	.h1, h1, .article-details .article-header h1 {
		font-size: 28px;
	}

	.h2, h2, .article-details .article-header h2 {
		font-size: 26px;
	}

	.h3, h3, .article-details .article-header h3 {
		font-size: 24px;
	}

	.h4, h4, .article-details .article-header h4 {
		font-size: 22px;
	}

	.h5, h5, .article-details .article-header h5 {
		font-size: 20px;
	}

	.h6, h6, .article-details .article-header h6 {
		font-size: 18px;
	}
}

@media screen and (min-width: 400px) and (max-width: 767px) {
	.h1, h1, .article-details .article-header h1 {
		font-size: 30px;
	}

	.h2, h2, .article-details .article-header h2 {
		font-size: 28px;
	}

	.h3, h3, .article-details .article-header h3 {
		font-size: 26px;
	}

	.h4, h4, .article-details .article-header h4 {
		font-size: 24px;
	}

	.h5, h5, .article-details .article-header h5 {
		font-size: 22px;
	}

	.h6, h6, .article-details .article-header h6 {
		font-size: 20px;
	}
}

@media screen and (min-width: 768px) {
	.h1, h1, .article-details .article-header h1 {
		font-size: 42px;
	}

	.h2, h2, .article-details .article-header h2 {
		font-size: 36px;
	}

	.h3, h3, .article-details .article-header h3 {
		font-size: 32px;
	}

	.h4, h4, .article-details .article-header h4 {
		font-size: 28px;
	}

	.h5, h5, .article-details .article-header h5 {
		font-size: 24px;
	}

	.h6, h6, .article-details .article-header h6 {
		font-size: 22px;
	}
}



/* Buttons, links and forms */
.form-control, .form-select {
    border-radius: 0;
	padding: 18px;
	font-size: 18px;
	border: 1px solid var(--color-input-border)!important;
	box-sizing: border-box!important;
}

input {
	font-size: 18px!important;
}

.form-control:focus {
	border-color: var(--color-input-border-focus)!important;
	box-shadow: 0 0 10px 3px var(--color-input-border-focus-box-shadow)!important;
	outline: none!important;
}

.form-select:focus {
	border-color: var(--color-input-border-focus)!important;
    box-shadow: 0 0 10px 3px var(--color-input-border-focus-box-shadow)!important;
	outline: none!important;
}

select.form-control:not([multiple]), select.inputbox:not([multiple]), select:not([multiple]) {
    height: auto!important;
	border-radius: 0!important;
}

textarea {
	border-radius: 0!important;
	border: 1px solid var(--color-input-border)!important;
	box-sizing: border-box!important;
}

textarea:focus {
	border-color: var(--color-input-border-focus)!important;
	box-shadow: 0 0 10px 3px var(--color-input-border-focus-box-shadow)!important;
	outline: none!important;
}

input[type="text"]:not(.form-control), 
input[type="email"]:not(.form-control), 
input[type="url"]:not(.form-control), 
input[type="date"]:not(.form-control), 
input[type="password"]:not(.form-control), 
input[type="search"]:not(.form-control), 
input[type="tel"]:not(.form-control), 
input[type="number"]:not(.form-control), 
select:not(.form-select):not(.form-control) {
    padding: 18px!important;
	border-radius: 0!important;
	border: 1px solid var(--color-input-border)!important;
	box-sizing: border-box!important;
}

input[type="text"]:not(.form-control):focus, 
input[type="email"]:not(.form-control):focus, 
input[type="url"]:not(.form-control):focus, 
input[type="date"]:not(.form-control):focus, 
input[type="password"]:not(.form-control):focus, 
input[type="search"]:not(.form-control):focus, 
input[type="tel"]:not(.form-control):focus, 
input[type="number"]:not(.form-control):focus, 
select:not(.form-select):not(.form-control):focus {
	border-color: var(--color-input-border-focus)!important;
    box-shadow: 0 0 10px 3px var(--color-input-border-focus-box-shadow)!important;
	outline: none!important;
}


.btn, .btn-primary, .sppb-btn-primary {
	display: inline-block!important;
	position: relative!important;
	white-space: nowrap!important;
	color: #fff!important;
	background-color: var(--color-primary)!important;
	font-size: 18px!important;
	font-weight: 600!important;
	border: none!important;
	border-radius: 0!important;
	padding: 18px 40px!important;
	transition: all 0.3s ease!important;
}

.btn:hover, .btn-primary:hover, .sppb-btn-primary:hover,
.btn:active, .btn-primary:active, .sppb-btn-primary:active {
	background-color: var(--color-secondary)!important;
}

.btn:focus, .btn-primary:focus, .sppb-btn-primary:focus {
	background-color: var(--color-secondary)!important;
	outline: 2px solid #16315a!important;
	outline-offset: 1px!important;
}

.btn:focus:not(:focus-visible), 
.btn-primary:focus:not(:focus-visible), 
.sppb-btn-primary:focus:not(:focus-visible) {
	outline: none!important;
}


.btn-secondary, .sppb-btn-secondary {
	display: inline-block!important;
	position: relative!important;
	white-space: nowrap!important;
	color: #fff!important;
	background-color: #404040!important;
	font-size: 18px!important;
	font-weight: 600!important;
	border: none!important;
	border-radius: 0!important;
	padding: 18px 40px!important;
	transition: all 0.3s ease!important;
}

.btn-secondary:hover, .sppb-btn-secondary:hover,
.btn-secondary:active, .sppb-btn-secondary:active {
	background-color: #606060!important;
}

.btn-secondary:focus, .sppb-btn-secondary:focus {
	background-color: #606060!important;
	outline: 2px solid #333!important;
	outline-offset: 1px!important;
}

.btn-secondary:focus:not(:focus-visible), 
.sppb-btn-secondary:focus:not(:focus-visible) {
	outline: none!important;
}


.btn-white {
	display: inline-block!important;
	position: relative!important;
	white-space: nowrap!important;
	color: var(--color-primary)!important;
	background-color: #fff!important;
	font-size: 18px!important;
	font-weight: 600!important;
	border: none!important;
	border-radius: 0!important;
	padding: 18px 40px!important;
	transition: all 0.3s ease!important;
}

.btn-white:hover,
.btn-white:active {
	color: #fff!important;
	background-color: var(--color-secondary)!important;
}

.btn-white:focus {
	background-color: var(--color-secondary)!important;
	outline: 2px solid #16315a!important;
	outline-offset: 1px!important;
}

.btn-white:focus:not(:focus-visible) {
	outline: none!important;
}


.btn-link-underline {
	position: relative;
	color: #252525;
	font-size: 18px!important;
	font-weight: 700;
	padding: 0;
	text-decoration: none;
}

.btn-link-underline:hover {
    color: var(--color-primary);
}

.btn-link-underline::after {
    display: block!important;
    position: absolute;
    content: '';
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2px);
    transition: width 0.3s ease, border-color 0.3s ease;
}

.btn-link-underline:hover::after {
    width: 0;
    border-color: var(--color-primary);
}

.btn-link-underline:active {
	font-weight: 700;
}

.btn-link-underline:focus {
	outline: 1px solid var(--color-primary)!important;
	outline-offset: 2px!important;
	border-radius: 2px!important;
}

.btn-link-underline:focus:not(:focus-visible) {
	outline: none!important;
}



/* RSforms */
.formContainer .form-check {
    padding-left: 50px;
    padding-top: 5px;
}

.formContainer .form-check label {
	font-weight: 300;
}



/* Search */
#search-results a:hover span,
#search-results a:focus span,
#search-results a:active span {
	text-decoration: none!important;
}

.com-finder__search label {
	font-weight: 600;
	margin-bottom: 10px;
}

.com-finder>*+*, .com-finder__results>*+* {
    margin-top: 0;
}

.result__item+.result__item {
    border-top: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    #search-form .btn-primary span.icon-search {
        margin-right: 0;
    }
    
	#search-form .btn-primary {
        font-size: 0!important;
		padding: 20px 30px !important
    }
    
	#search-form .btn-primary .icon-search {
        font-size: 18px!important;
    }
}

.view-search #search-form button, .view-search #search-form .btn {
	border-radius: 0;
}

#search-form .awesomplete input {
	border-top-right-radius: 0px!important;
	border-bottom-right-radius: 0px!important;
}

#search-form button {
	border-top-left-radius: 0px!important;
	border-bottom-left-radius: 0px!important;
}

@media screen and (min-width: 575px) {
	#mksearch-modal .jconfirm-box-container {
		min-width: 450px!important;
	}
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
    background-color: var(--color-modal-bg)!important;
	backdrop-filter: blur(8px);
}

#mksearch-modal .jconfirm-title {
	font-size: 34px!important;
}

@media screen and (max-width: 575px) {
	#mksearch-modal .jconfirm-title {
		font-size: 30px!important;
	}
}



/* Logo and main menu */
#sp-logo-and-main-menu {
	position: relative;
	z-index: 999;
	background-color: #fff;
}

@media screen and (min-width: 1200px) and (max-width: 1799px) {
	#sp-logo-and-main-menu > .container,
	#sp-top-bar > .container {
		max-width: 1920px;
		padding: 0 30px 0 30px;
	}
	
	#sp-top-bar > .container {
		
	}
}

@media screen and (min-width: 992px) and (max-width: 1799px) {
	#offcanvas-toggler,
	.sp-megamenu-parent>li>a, .sp-megamenu-parent>li>span {
		line-height: 100px;
	}
}

@media screen and (min-width: 1800px) {
	#sp-logo-and-main-menu > .container {
		max-width: 1920px;
		padding: 0 45px 0 30px;
	}
}

.header-sticky {
	position: fixed!important;
	top: 0;
	width: 100%;
	animation: spFadeInDown 1.0s;
	z-index: 9;
}

@media screen and (max-width: 575px) {
	.header-sticky {
		position: fixed!important;
		top: 0;
		width: 100%;
		animation: spFadeIn 0.8s;
		z-index: 9;
	}
}

#sp-logo-and-main-menu.header-sticky {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.175);
}

/*header column widths*/
@media screen and (max-width: 991px)  {
	#sp-logo.col-lg-3 {
		flex-grow: 1;
		width: auto;
	}

	#sp-menu.col-lg-9 {
		width: 50px;	
	}
}

@media screen and (min-width: 992px) {
	#sp-top1.col-lg-3, #sp-logo.col-lg-3 {
		width: 330px; 
	}

	#sp-top2.col-lg-9, #sp-menu.col-lg-9 {
		flex-grow: 1;
		width: auto;
	}
}

/*top menu*/
#sp-top-bar a {
    font-size: 16px;
}

@media screen and (max-width: 1799px) {
	#sp-menu .top-menu {
		display: none!important;
	}
}

@media screen and (max-width: 574px) {
	#sp-top-bar .top-menu  {
		width: 100%;
		margin-left: 0;
	}

	#sp-top-bar .top-menu ul li:first-child {
		display: none!important;
	}
	
	#sp-top-bar .top-menu ul li.item-121 {
		order: 3;
	}
	
	#sp-top-bar .top-menu .call-us {
		padding-left: 0;
	}
}

@media screen and (min-width: 1800px), screen and (max-width: 380px) {
	#sp-top-bar {
		display: none!important;
	}
}

#sp-menu > .sp-column > .top-menu {
	order: 2;
}

#sp-menu > .sp-column > .sp-megamenu-wrapper {
	order: 1;
}

#sp-top1 > .sp-column {
    display: flex;
	justify-content: end;
}

.top-menu ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

@media screen and (max-width: 574px) {
	.top-menu ul {
		justify-content: space-between;
	}
}

.top-menu .only-icon {
	font-size: 0px!important;
	line-height: 10px;
}

.top-menu .only-icon span {
    font-size: 20px;
	padding-right: 0!important;
    transition: all 0.3s ease;
}

.top-menu .only-icon:hover span {
	color: var(--color-primary)!important;
}

.top-menu .trigger-mksearch {
    display: inline-flex;
    align-items: center;
	position: relative;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 20px;
    margin-right: 10px;
}

.top-menu .trigger-mksearch::before,
.top-menu .trigger-mksearch::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 46px;
	background: #ddd;
}

.top-menu .trigger-mksearch::before { 
	left: 0; 
}

.top-menu .trigger-mksearch::after { 
	right: 0; 
}

.top-menu .get-started {
	display: inline-block;
	height: 54px;
	line-height: 54px; 
	padding: 0 20px;
	color: #fff!important;
	background-color: var(--color-primary); 
	text-decoration: none;
	border: none;
	border-radius: 0;
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.top-menu .get-started:hover {
	color: var(--color-primary); 
	background-color: var(--color-secondary); 
}

/*call us*/
#sp-top-bar .call-us,
#sp-logo-and-main-menu .call-us {
	position: relative;
	top: 11px;
	padding-left: 10px;
	color: var(--color-primary)!important;
	font-weight: 500;
	transition: all 0.3s ease;
}

#sp-top-bar .call-us:hover,
#sp-logo-and-main-menu .call-us:hover {
	color: var(--color-secondary)!important;
}

#sp-top-bar .call-us::before,
#sp-logo-and-main-menu .call-us::before {
    content: "\f2a0"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    background-color: var(--color-call-icon-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    top: -10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#sp-top-bar .call-us:hover::before,
#sp-logo-and-main-menu .call-us:hover::before {
    color: var(--color-primary);
    background-color: var(--color-call-icon-bg);
}

@media screen and (max-width: 1799px) {
	
	#sp-top-bar .call-us::before,
	#sp-logo-and-main-menu .call-us::before {
		background-color: var(--color-call-icon-bg-darker);
	}
	
	#sp-top-bar .call-us:hover::before,
	#sp-logo-and-main-menu .call-us:hover::before {
        background-color: var(--color-call-icon-bg-darker);
    }
}

#sp-top-bar .call-us::after,
#sp-logo-and-main-menu .call-us::after {
	position: absolute;
	content: "Call Us"; 
	color: #252525;
	font-weight: 400;
	font-size: 14px;
	top: -20px;
	left: 70px;
	transition: all 0.3s ease;
}

@media screen and (max-width: 574px) {
	#sp-top-bar .call-us::after {
		left: 60px;
	}
}
/**/

#sp-logo, #sp-menu {
	z-index: 9;
}

#sp-logo > .sp-column {
	height: 100%;
}

#sp-menu > .sp-column {
    display: flex;
    align-items: center;
    justify-content: end;
}

#sp-logo-and-main-menu .logo {
	height: 100%;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 1199px) {
	#sp-logo.col-lg-3 {
		width: 80%;
	}
	
	#sp-menu.col-lg-9 {
		width: 20%;
	}
	
	.logo-image {
		height: 76px!important;
		padding: 15px 0;
	}
	
	#offcanvas-toggler {
		height: 100%!important;
	}
}

@media screen and (max-width: 574px) {
	.logo-image {
		width: 100%!important;
		height: auto!important;
		max-height: 90px;
		padding: 20px 0 15px 0;
	}
}

@media screen and (min-width: 575px) and (max-width: 1199px) {
	.logo-image {
		width: 100%!important;
		height: auto!important;
		max-height: 96px;
		padding: 20px 0 15px 0;
	}
}

.sp-megamenu-wrapper {
	justify-content: end;
}

@media screen and (min-width: 1200px) and (max-width: 1799px) {
	.logo-image {
		height: auto!important;
		max-height: 72px; 
		width: auto!important;
	}
}

@media screen and (min-width: 1800px) {
	.logo-image {
		height: auto!important;
		max-height: 96px; 
		width: auto!important;
	}
}

.sp-megamenu-wrapper > ul {
	display: flex;
	justify-content: space-between; 
	list-style-type: none; 
	padding: 0; 
	white-space: nowrap;
	flex-wrap: nowrap;
}

.sp-megamenu-wrapper ul li a {
    white-space: normal;
}

.sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-right {
    left: -5px!important;
}

.sp-megamenu-parent .sp-dropdown li > a {
    font-size: 19px;
	display: block!important;
}

@media screen and (max-width: 1299px) {
	.sp-megamenu-parent>li>a, .sp-megamenu-parent>li>span {
		position: relative;
		padding: 0 10px;
		font-size: 17px!important;
	}
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    line-height: 1.3;
}

@media screen and (max-width: 1599px) {
	.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
		font-size: 17px!important;
	}
}

@media screen and (max-width: 1299px) {
	.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
		font-size: 16px!important;
	}
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    padding: 5px 0;
}

.sp-megamenu-parent>li.active>a {
    font-weight: 600;
}

.sp-megamenu-parent>li.active:hover>a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active>a:hover {
    color: var(--color-primary);
}

.sp-megamenu-parent>li:last-child>a {
    padding: 0 15px 0 15px;
}

.sp-megamenu-parent .sp-menu-item .phone-item {
	position: relative;
	padding: 0 10px 0 25px;
    margin: 0 0 0 12px;
}

.sp-megamenu-parent .sp-menu-item .phone-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: rgba(255, 255, 255, 0.4);
}

.sp-megamenu-parent .sp-menu-item .developers {
	display: inline-block;
	height: 60px;
	line-height: 60px; 
	padding: 0 25px;
	margin-left: 15px;
	background-color: #fff; 
	color: #252525;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.sp-megamenu-parent .sp-menu-item .developers:hover {
	color: #fff; 
	background-color: var(--color-primary); 
}



/* Offcanvas menu */
/* remove header sticky behavior */
.offcanvas-menu {
    overflow-y: auto!important;
    overflow-x: hidden!important;
}

.offcanvas-menu > .d-flex.align-items-center.p-3.pt-4 {
    position: static!important;
}

.offcanvas-menu .offcanvas-inner {
    display: flex;
    flex-direction: column;
    flex: 1!important;
    overflow: visible!important;
    max-height: none!important;
    height: auto!important;
	padding: 0px 20px 25px 20px;
}
/**/

.offcanvas-menu .offcanvas-inner .header-modules {
    margin-bottom: 5px!important;
}

.offcanvas-overlay {
	background: var(--color-modal-bg)!important;
}

body.ltr .offcanvas-menu .offcanvas-inner ul.menu>li ul {
    margin-left: 20px;
}

.offcanvas-menu .offcanvas-inner ul.menu, .offcanvas-menu .offcanvas-inner ul.menu ul {
    margin: 0;
}

.offcanvas-menu .logo  {
    width: 72%;
}

.offcanvas-menu .logo-image  {
    width: auto!important;
	height: 80px!important;
	padding: 5px 0 10px 10px;
}

#offcanvas-toggler {
	width: 100%;
    font-size: 22px;
    font-weight: 400;
    z-index: 9;
}

#offcanvas-toggler:hover {
	color: #122a57!important;
}

@media screen and (min-width: 340px) {
	#offcanvas-toggler::after {
		content: "MENU";
		color: var(--color-primary);
		margin: 0 0 0 3px;
		display: block;
		font-size: 24px;
		font-weight: 600;
	}
}

/* switch to mobile menu */
@media screen and (max-width: 1199px) {
	#offcanvas-toggler.d-lg-none {
		display: flex!important;
	}

	.sp-megamenu-parent.d-none {
		display: none!important;
	}
}

.offcanvas-active .burger-icon > span, #modal-menu-toggler.active .burger-icon > span {
	background-color: var(--color-primary)!important;
}

.offcanvas-menu .burger-icon {
    margin-right: 12px!important;
	margin-top: 6px;
}

#sp-menu .burger-icon {
	width: 30px;
}

.offcanvas-active .burger-icon > span {
    margin: 3.9px -3px;
}

.burger-icon > span {
	background-color: var(--color-primary)!important;
	width: 28px;
	height: 3px;
	border-radius: 5px;
}

@media screen and (max-width: 399px) {
	.offcanvas-menu { 
		width: 100%!important;
	}

	body.ltr.offcanvs-position-right .offcanvas-menu {
		right: -100%;
	}
}

@media screen and (min-width: 400px) {
	.offcanvas-menu { 
		width: 400px!important;
	}

	body.ltr.offcanvs-position-right .offcanvas-menu {
		right: -400px;
	}
}

body.ltr #offcanvas-toggler.offcanvas-toggler-right {
	margin-right: 0px;
}

@media screen and (max-width: 767px) {
	body.ltr #offcanvas-toggler.offcanvas-toggler-right {
		margin-top: 2px;
	}
}

.offcanvas-toggler-right .burger-icon > span,
.offcanvas-menu .offcanvas-inner ul.menu > li a, .offcanvas-menu .offcanvas-inner ul.menu > li span,
.offcanvas-menu .offcanvas-inner ul.menu > li.active > a,
.offcanvas-menu .offcanvas-inner ul.menu li.active a,
.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a:focus > .menu-toggler,
.offcanvas-menu .offcanvas-inner ul.menu > li li a,
.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a > .menu-toggler,
.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a:hover > .menu-toggler {
	color: #252525;
}

.offcanvas-menu .offcanvas-inner ul.menu > li a:hover, .offcanvas-menu .offcanvas-inner ul.menu > li a:focus, .offcanvas-menu .offcanvas-inner ul.menu > li span:hover, .offcanvas-menu .offcanvas-inner ul.menu > li span:focus {
	color: var(--color-secondary);
}

.offcanvas-menu .offcanvas-inner ul.menu>li>a, .offcanvas-menu .offcanvas-inner ul.menu>li>span {
    font-size: 20px;
    line-height: 20px;
}

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent li.menu-parent .menu-toggler {
    right: 0!important; 
    top: auto!important; 
	margin-top: -14px;
	font-size: 20px;
}

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent .menu-toggler {
    color: var(--color-primary);
}

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent .nav-header {
	display: block;
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 3px;
	text-transform: uppercase;
}

.offcanvas-menu ul.menu-child li {
	padding: 5px;
}

.offcanvas-menu .offcanvas-inner ul.menu > li > ul li a {
	font-size: 20px;
	display: flex;
	font-weight: 600;
    line-height: 1.4;
}

body.ltr .offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a > .menu-toggler, body.ltr .offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > .menu-separator > .menu-toggler {
	right: 0!important;
}

.offcanvas-menu .offcanvas-inner ul.menu > li > a.open-search-icon {
	display: none!important;
}

.offcanvas-menu .offcanvas-inner ul.menu > li > a, .offcanvas-menu .offcanvas-inner ul.menu > li > span {
	opacity: 1;
	padding: 12px 10px;
}

.offcanvas-menu .offcanvas-inner .sp-module {
   width: 100%;
}

.offcanvas-menu .offcanvas-inner .sp-module:not(:last-child) {
    margin-bottom: 0;
}

/* Top menu offcanvas */
.offcanvas-menu .top-menu-offcanvas ul li .trigger-mksearch span {
	display: none;
}

.offcanvas-menu li.item-121 {
	order: 3;	
}

/*get-started btn*/
.offcanvas-menu li.item-121 {
	margin: 15px 10px!important;	
}

.offcanvas-menu li a.get-started {
	padding: 20px 25px!important;
	background-color: var(--color-primary);
	color: #fff!important;
	border: none;
	border-radius: 0;
    justify-content: center;
	text-align: center;
	font-weight: 600;
	width: 100%;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.offcanvas-menu li a.get-started:hover {
	color: var(--color-primary)!important; 
	background-color: var(--color-secondary); 
}

.offcanvas-menu li a.get-started:focus {
	color: #fff!important; 
	background-color: var(--color-primary); 
	outline: 3px solid var(--color-primary);
	outline-offset: 1px;
}

.offcanvas-menu li a.get-started:focus:not(:focus-visible) {
	outline: none;
}

.offcanvas-menu li a.get-started:focus-visible {
	color: #fff!important; 
	background-color: var(--color-primary); 
	outline: 3px solid var(--color-primary);
	outline-offset: 1px;
}

/*call us offcanvas*/
.offcanvas-menu .call-us {
	position: relative;
	top: 10px;
	padding-left: 10px;
	color: var(--color-primary)!important;
	font-size: 18px!important;
	font-weight: 500;
	transition: all 0.3s ease;
}

.offcanvas-menu .call-us:hover {
	color: var(--color-secondary)!important;
}

.offcanvas-menu .call-us::before {
    content: "\f2a0"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    background-color: var(--color-call-icon-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    top: -10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.offcanvas-menu .call-us:hover::before {
    color: var(--color-primary);
    background-color: var(--color-call-icon-bg);
}

.offcanvas-menu .call-us::after {
	position: absolute;
	content: "Call Us"; 
	color: #252525;
	font-weight: 400;
	font-size: 14px;
	top: 5px;
	left: 70px;
	transition: all 0.3s ease;
}



/* lite-youtube */
lite-youtube > .lty-playbtn {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background: none!important;
    cursor: pointer;
    z-index: 1;
    filter: none!important;
	transition: none!important;
    border: 0;
}

lite-youtube .lty-playbtn::after {
    font-family: 'Font Awesome 6 Free';
    content: '\f144';
    color: #db0000!important;
    background-color: #fff!important;
	font-weight: 900;
	font-size: 70px;
	border: 4px solid #fff;
    border-radius: 50%;
	transition: all 0.3s ease;
}

@media screen and (max-width: 575px) {
	lite-youtube .lty-playbtn::after {
		font-size: 60px;
	}	
}

lite-youtube .lty-playbtn:hover::after {
    color: #DB0000!important; 
	transition: all 0.3s ease;
}

lite-youtube .lty-playbtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px; 
    height: 40px;
	border-radius: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    z-index: -1;
}

lite-youtube .lty-playbtn:hover::before {
	background-color: #fff;
	transition: all 0.3s ease;
}

lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
	max-width: 1600px!important;
}

lite-youtube {
	transition: filter 0.5s ease;
}

lite-youtube:hover {
	filter: saturate(1.1) brightness(1.1);
	transition: filter 0.5s ease;
}



/* Section - hero */
@media screen and (min-width: 1200px) {
	#section-hero {
		height: calc(100vh - 125px);
		min-height: 580px;
		max-height: 820px;
	}
}

#section-hero > .sppb-row-container,
#section-hero > .sppb-row-container > .sppb-row {
	height: 100%;
}

#section-hero .hero-title-text .sppb-addon-title {
	font-size: clamp(2.125rem, 1.3173rem + 3.5897vw, 5.625rem)!important;
	line-height: 1.2!important;
}

@media screen and (min-width: 1200px) {
	#section-hero .hero-title-text .sppb-addon-title {
		line-height: 1.1!important;
	}	
}



/* Section - three boxes */
#section-three-boxes .three-boxes-left-div {
    transition: background-color 0.3s ease;
}

#section-three-boxes .service-box-column .sppb-column-addons > .sppb-addon-wrapper:first-child:hover
  ~ .sppb-addon-wrapper > .sppb-div-addon > .sppb-addon-wrapper > .three-boxes-left-div {
    background-color: var(--color-secondary);
	transition: background-color 0.3s ease;
}

#section-three-boxes .service-box-column .sppb-column-addons > .sppb-addon-wrapper:first-child:hover
  ~ .sppb-addon-wrapper > .sppb-div-addon > .sppb-addon-wrapper::after {
	border-left-color: var(--color-secondary);
	transition: border-left-color 0.3s ease;
}

@media screen and (min-width: 768px) and (max-width: 1199px), screen and (max-width: 574px) {
	#section-three-boxes .service-box-column .sppb-column-addons > .sppb-addon-wrapper:first-child:hover
	  ~ .sppb-addon-wrapper > .sppb-div-addon > .sppb-addon-wrapper::after {
		border-left-color: transparent;
		border-top-color: var(--color-secondary);
		transition: border-top-color 0.3s ease;
	}
}

#section-three-boxes .service-box-column .sppb-column-addons > .sppb-addon-wrapper:first-child:hover
  ~ .sppb-addon-wrapper .service-box-img img {
	filter: var(--filter-primary-hover);
}



/* Section - get in touch */
#section-get-in-touch .get-in-touch-column .sppb-column-addons > .sppb-addon-wrapper
  ~ .sppb-addon-wrapper > .sppb-div-addon {
	border-top: 5px solid var(--color-primary);
}

#section-get-in-touch .get-in-touch-column .sppb-column-addons > .sppb-addon-wrapper:hover 
  ~ .sppb-addon-wrapper > .sppb-div-addon {
    color: #fff;
	background-color: var(--color-primary);
	border-top: 5px solid var(--color-secondary);
	transition: background-color 0.3s ease;
}

#section-get-in-touch .get-in-touch-img img {
	filter: var(--filter-primary);
}

#section-get-in-touch .get-in-touch-column .sppb-column-addons > .sppb-addon-wrapper:first-child:hover
  ~ .sppb-addon-wrapper .get-in-touch-img img {
	filter: var(--filter-primary-hover);
}



/* Section - life at the green house cottages */
#section-life-at-cottages {
    z-index: 9!important;
}

#section-life-at-cottages .youtube-modal-popup {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mfp-iframe-holder .mfp-content {
    max-width: 1200px;
}



/* Section - we are committed to quality care / faq */
#section-quality-care .faq-heading {
	position: relative;
}

#section-quality-care button.sppb-panel-heading::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    color: var(--color-primary);
	content: "\f067";
	font-weight: 900;
	right: 20px;
	top: 50%;
    transform: translateY(-50%);
}

#section-quality-care button.sppb-panel-heading.active::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";    
	color: var(--color-primary);
    content: "\f068";
    font-weight: 900;
	right: 20px;
	top: 50%;
    transform: translateY(-50%);
}



/* Section - photo gallery */
@media screen and (max-width: 991px) {
	#section-gallery .slider-arrow {
		width: 45px!important;
		height: 45px!important;
		font-size: 18px!important;
	}
}

@media screen and (max-width: 1569px) {
    #section-gallery .slider-arrows {
        padding: 0 30px!important;
		margin-top: 20px !important;
    }
}

@media screen and (min-width: 1570px) {
    #section-gallery .slider-arrows {
        left: -110px!important;
        width: calc(100% + 220px)!important;
    }
}



/* Section - schedule a visit */
#section-schedule-visit > .sppb-row-container > .sppb-row {
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.2);
}

#section-schedule-visit-container #section-schedule-visit > .sppb-row-container {
	padding: 0!important;
}


	
/* Section - news & updates */
#section-news .mod-articles-grid {
    display: grid;
    grid-gap: var(--grid-layout-gap);
    grid-template-columns: repeat(2, 1fr);
}

@container (width < 600px) {
    #section-news .mod-articles-grid {
        grid-template-columns: 1fr;
    }
}

#section-news .mod-articles-item,
#section-news .mod-articles-item-content {
	height: 100%;
}

#section-news .mod-articles-col {
	margin-bottom: 30px;
}

#section-news .mod-articles-item-content {
	display: flex;
    flex-direction: column;
	border: none;
	border-radius: 0;
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.15);
}

#section-news .blog-article-image-container {
	padding-top: 56.25%;
	background-color: #eee;
    background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
	filter: saturate(0.8);
	border-radius: 0;
	transition: filter 0.5s ease;
}

#section-news .blog-article-video-container {
    position: relative;
    padding-top: 56.25%; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
	border-radius: 0;
}

#section-news .blog-article-image-container:hover {
	filter: saturate(1) brightness(1.03);
	transition: filter 0.5s ease;
}

#section-news .blog-article-item-inner {
	display: flex;
    flex-direction: column;
	height: 100%;
	padding: 0;
	border-radius: 0;
}

#section-news .mod-articles-link {
	font-weight: 600;
	display: inline-block;
	color: #252525;
	font-size: 26px;
	line-height: 1.3;
}

#section-news .mod-articles-link:hover {
	color: var(--color-primary)!important;
	line-height: 1.3;
}

#section-news .mod-articles-title {
	margin-bottom: 5px;
}

#section-news .mod-articles-link:focus, #section-news .mod-articles-link:active {
	color: var(--color-primary)!important;
}

@media screen and (max-width: 575px) {
	#section-news .mod-articles-link {
		font-size: 22px;
	}
}

#section-news .mod-articles-text-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #fff;
	padding: 0;	
	border-radius: 10px;
    z-index: 9;
}

#section-news .mod-articles-text-content .mod-articles-title {
	padding: 20px 30px 0 30px;	
}

#section-news .mod-articles-text-content .mod-article-intro-text {
	padding: 5px 30px 35px 30px;	
}


@media screen and (max-width: 399px) {
	#section-news .mod-articles-text-content .mod-articles-title {
		padding: 15px 25px 0 25px;	
	}

	#section-news .mod-articles-text-content .mod-article-intro-text {
		padding: 5px 25px 30px 25px;	
	}
}

#section-news .mod-article-intro-text {
	font-size: 16px;
	line-height: 1.6;
	padding-top: 12px;
}

#section-news .mod-article-intro-text p {
	margin-bottom: 0!important;
}

#section-news .readmore {
	margin-top: auto;
	background-color: var(--color-primary);
}

#section-news .readmore a {
	display: inline-block;
	position: relative;
	width: 100%;
	color: #fff !important;
	font-size: 16px!important;
	font-weight: 700!important;
	text-decoration: none;
	padding: 20px 30px;
}

@media screen and (max-width: 399px) {
	#section-news .readmore a {
		padding: 20px 25px;
	}	
}

#section-news .readmore a::after {
    position: relative;
	content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 3px;
	top: 1px;
}

#section-news .readmore a:hover {
	background-color: var(--color-secondary)!important;
}



/* Bottom */
@media screen and (min-width: 575px) and (max-width: 767px)  {
	#sp-bottom-section {
		padding: 0 20px;
	}
}

@media screen and (min-width: 768px) {
	#sp-bottom-section {
		padding: 0 30px;
	}
}

#sp-bottom1 {
	padding: 0;
}



/* Footer */
#section-footer1 {
    z-index: 0;
    position: relative;
}
/* vertical menu */
#section-footer1 .vertical-menu ul {
	list-style: none;
	padding: 0;
}

#section-footer1 .vertical-menu li {
  display: flex;
  margin-bottom: 8px;
}

#section-footer1 .vertical-menu ul li {
	position: relative;
	margin: 15px 0;
}

#section-footer1 .vertical-menu ul li:first-child {
	margin: 0 0 15px 0;
}

#section-footer1 .vertical-menu ul li a {
	display: inline-flex;
	align-items: flex-start;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
	#section-footer1 .vertical-menu ul li a {
		display: inline-block;
		width: 100%;
		text-align: center;
	}
}

#section-footer1 .vertical-menu li a span.fa-solid {
	flex-shrink: 0; 
	margin-top: 3px;
}

@media screen and (max-width: 767px) {
	#section-footer1 .vertical-menu ul li a {
		padding: 2px 0;
		line-height: 1.2;
	}
}

#section-footer1 .vertical-menu ul li a:hover {
	color: var(--color-secondary);
}

#section-footer1 .vertical-menu.chevron-menu ul li a::before {
    font-family: "Font Awesome 6 Free";
	content: "\f061"; 
    color: #fff;
    font-size: 12px;
	font-weight: 900; 
    margin-right: 8px; 
    display: inline-block;
	transform: translateY(3px);
}

@media screen and (max-width: 767px) {
	#section-footer1 .vertical-menu.chevron-menu ul li a::before {
		transform: translateY(-1px);
	}
}

/* socials */
#section-footer1 .footer-socials ul {
	display: flex!important;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 0;
	padding: 0;
}

#section-footer1 .footer-socials ul li {
    display: block;
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0;
}

#section-footer1 .footer-socials ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0px;
    padding: 0!important;
}

#section-footer1 .footer-socials ul li span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background-color: #fff;
	font-size: 22px;
    margin: 0;
    padding: 0!important;
    border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	width: 56px;
    height: 56px;
    transition: background-color 0.2s ease, color 0.2s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#section-footer1 .footer-socials ul li a:hover span {
    color: #fff!important;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}



/* Page header */
body:not(.com-sppagebuilder) #sp-page-header {
    position: relative;
    background-image: url('../../../images/tmpl/page-header-background.jpg');
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    animation-duration: 600ms;
    animation-name: fadeIn;
}

body:not(.com-sppagebuilder) #sp-page-header .container {
    position: relative;
    z-index: 1;
}

#sp-page-header .article-breadcrumbs-container {
	display: flex;
    justify-content: center;
    position: relative;
    line-height: 1.3;
    flex-direction: column;
	padding: 20px 0;  
}

#sp-page-header .article-breadcrumbs-active-item h1 {
	display: flex;
    justify-content: center;
	color: #fff;
	font-weight: 600;
	animation-duration: 1000ms;
    animation-name: fadeIn;
}

#sp-page-header .article-breadcrumbs-trail {
	position: absolute;
	color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
	font-size: 14px;
	line-height: 26px;
	font-weight: 300;
    padding: 10px 20px; 
	bottom: 0;
    left: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#sp-page-header .article-breadcrumbs-trail a {
	color: #fff;
	font-weight: 300;
}

@media screen and (max-width: 575px) {
	#sp-page-header .article-breadcrumbs-trail,
	#sp-page-header .article-breadcrumbs-trail a {
		font-size: 15px;
		line-height: 28px;
	}
}

#sp-page-header .article-breadcrumbs-trail a:hover {
	color: var(--color-secondary);
}

#sp-page-header .article-breadcrumbs-trail .breadcrumbs-separator {
	padding: 0 5px;
}

@media screen and (max-width: 575px) {
	#sp-page-header .article-breadcrumbs-container {
		padding: 50px 0 40px 0;  
	}
	
	#sp-page-header .article-breadcrumbs-trail {
		position: relative;
		bottom: -40px;
	}

	#sp-page-header {
		padding: 0;
	}

	#sp-page-header .article-breadcrumbs-container {
		min-height: 180px;
	}

	#sp-page-header .article-breadcrumbs-active-item h1 {
		font-size: 32px;	
	}
}

@media screen and (min-width: 576px) and (max-width: 767px) {
	#sp-page-header .article-breadcrumbs-container {
		padding: 50px 0 40px 0;  
	}

	#sp-page-header {
		padding: 0 20px;
	}

	#sp-page-header .article-breadcrumbs-container {
		min-height: 220px;
	}

	#sp-page-header .article-breadcrumbs-active-item  {
		margin-bottom: 40px;	
	}	

	#sp-page-header .article-breadcrumbs-active-item h1 {
		font-size: 40px;	
	}	
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	#sp-page-header {
		padding: 0 30px;
	}

	#sp-page-header .article-breadcrumbs-container {
		min-height: 260px;
	}
	
	#sp-page-header .article-breadcrumbs-active-item h1 {
		font-size: 48px;	
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	#sp-page-header {
		padding: 0 30px;
	}

	#sp-page-header .article-breadcrumbs-container {
		min-height: 280px;
	}

	#sp-page-header .article-breadcrumbs-active-item h1 {
		font-size: 52px;	
	}
}

@media screen and (min-width: 1200px) {
	#sp-page-header {
		padding: 0 30px;
	}

	#sp-page-header .article-breadcrumbs-container {
		min-height: 300px;
	}

	#sp-page-header .article-breadcrumbs-active-item h1 {
		font-size: 60px;
	}
}



/* News & updates blog roll */
.blognews .article-list .row [class^="col-lg"] {
    margin-bottom: 40px; 
}

@media screen and (max-width: 991px) {
	.blognews .article-list .row [class^="col-lg"] {
		margin-bottom: 30px; 
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.blognews .article-list .row .col-lg-4 {
		width: 50%; 
	}
}

.blognews .blog-article-video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%; 
	overflow: hidden;
	margin-bottom: 10px;
    border-radius: 0;
	background-color: #eee;
	transition: filter 0.5s ease;
}

.blognews .blog-article-image-container {
	padding-top: 56.25%;
	background-color: #eee;
    background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
	filter: saturate(0.8);
    border-radius: 0;
	transition: filter 0.5s ease;
}

.blognews .article-list .article {
	display: flex;
    flex-direction: column;
	height: 100%;
	padding: 0;
    margin-bottom: 0;
	border: none;
	box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    transition: all 0.3s ease;
}

.blognews .article-list .article-body {
	display: flex;
	flex: 1;
    flex-direction: column;
	background-color: #fff;
	padding: 0;
    border-radius: 0;
	height: 100%;
	z-index: 9;
}

.blognews .article-list .article-body .article-header {
	padding: 20px 30px 0px 30px;
}

.blognews .article-list .article-body .article-introtext {
	padding: 5px 30px 35px 30px;
}

@media screen and (max-width: 399px) {
	.blognews .article-list .article-body .article-header {
		padding: 15px 25px 0 25px;	
	}

	.blognews .article-list .article-body .article-introtext {
		padding: 5px 25px 30px 25px;	
	}
}

.blognews .article-list .article-intro-image {
	margin: 0;
	border-radius: 0;
}

.blognews .article-list .article-intro-image img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	filter: saturate(0.8) brightness(1);
	transition: filter 0.5s ease;
}

.blognews .article-list .blog-article-image-container:hover {
	filter: saturate(1) brightness(1.03);
	transition: filter 0.5s ease;
}

.blognews .article-list .article-header h2 {
	font-size: 26px;
    line-height: 1.3;
	margin-bottom: 5px!important;
}

@media screen and (max-width: 575px) {
	.blognews .article-list .article-header h2 {
		font-size: 24px;
	}
}

.blognews .article-list .article-header h2 a {
	color: #252525;
	font-weight: 600!important;
}

.blognews .article-list .article-header h2 a:hover {
	color: var(--color-primary)!important;
}

.blognews .article-list .article-header h2 a:focus,.blognews .article-list .article-header h2 a:active {
	color: var(--color-primary)!important;
}

.blognews .article-list .article-introtext {
	display: flex;
    flex: 1;
}

.blognews .article-list .readmore {
	margin-top: auto;
	background-color: var(--color-primary);
}

.blognews .article-list .readmore a {
	display: inline-block;
	position: relative;
	width: 100%;
	color: #fff !important;
	font-size: 16px!important;
	font-weight: 700!important;
	text-decoration: none;
	padding: 20px 30px;
}

@media screen and (max-width: 399px) {
	.blognews .article-list .readmore a {
		padding: 20px 25px;
	}	
}

.blognews .article-list .readmore a::after {
    position: relative;
	content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 3px;
	top: 1px;
}

.blognews .article-list .readmore a:hover {
	background-color: var(--color-secondary)!important;
}



/* Single article */
[itemprop="articleBody"] h1, [itemprop="articleBody"] h2, [itemprop="articleBody"] h3, [itemprop="articleBody"] h4, [itemprop="articleBody"] h5, [itemprop="articleBody"] h6 {
	margin-top: 2rem;
}

joomla-hidden-mail a {
	word-wrap: break-word;
}

@media screen and (min-width: 768px) {
	.article-header [itemprop="headline"] {
		margin-bottom: 20px;
		margin-top: 0;
	}
}

@media screen and (max-width: 575px) {
	.article-details .article-full-image,
	.article-details .blog-article-video-container {
		margin-bottom: 30px;
	}

	.article-details .article-header {
		margin-bottom: 15px;
	}
}

.article-details [itemprop="articleBody"] p {
	line-height: 1.8;
}

.article-details .wf-columns {
	margin: 20px 0;
}

.article-details .article-full-image {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.article-details .article-full-image img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.article-details .article-full-image img {
    border-radius: 0;
	filter: brightness(95%);
}

.article-details iframe[src*="youtube"] {
	width: 100%;
	max-width: 100%;
	height: auto!important;
	aspect-ratio: 16 / 9;
    border-radius: 0;
}
	
.article-details .article-info {
	display: none;
}

.article-details .blog-article-video-container {
	position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    margin: 0 0 2rem 0;
    border-radius: 0;
    background-color: #070707;
}

blockquote, .blockquote {
	position: relative;
	color: #000;
	background-color: var(--color-secondary);
	font-size: 18px;
	font-weight: 400;
    padding: 40px 170px 40px 40px;
	margin: 40px 0;
	position: relative;
	line-height: 1.6;
}

blockquote :last-child, .blockquote p:last-child {
	margin-bottom: 0!important;	
}

blockquote::after, .blockquote::after {
	content: '';
    position: absolute;
	background-image: url('../../../images/tmpl/quote-mark.png');
    background-position: center center;
    background-repeat: no-repeat;
	width: 92px; 
    height: 72px;
    right: 30px;
    bottom: -10px;
}

@media screen and (max-width: 991px) {
	blockquote, .blockquote {
		margin: 30px 0;
		padding: 30px 30px 50px 30px;
	}

    blockquote::after, .blockquote::after {
        background-size: 56px auto;
	    right: 20px;
		bottom: -25px;
    }
}

/*ul li*/
.article-details ul {
	list-style: none;
	padding: 0 0 0 30px;
	margin: 10px 0 30px 0;
}

.article-details ul > li > ul {
	margin: 20px 0 30px 0;
}

@media screen and (max-width: 575px) {
	.article-details ul {
		padding: 0 0 0 10px;
	}
}

.article-details ul li  {
	position: relative;
	padding: 0 0 0 30px;
	margin-bottom: 10px;
}

.article-details ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-size: 8px;
	font-weight: 600;
	color: #fff;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}



/* Pagination */
.pagination-wrapper {
    display: flex;
    align-items: center;
	justify-content: center!important;
	flex-wrap: wrap;
	margin-top: 10px;
}

.pagination-wrapper .pagination,
.pagination-wrapper .pagination-counter {
    margin-bottom: 10px!important;
	color: #252525!important;
}

@media screen and (max-width: 767px) {
	ul.pagination li:not(:first-child):not(:nth-child(2)):not(:last-child):not(:nth-last-child(2)) {
	  display: none;
	}
}

@media screen and (max-width: 575px) {
	.pagination-wrapper .pagination-counter {
		display: none;
	}
}

.pagination>.active>a, .pagination>.active>span {
    color: #fff;
	border-color: var(--color-primary);
    background-color: var(--color-primary);
	font-weight: 600;
}

.pagination>.active>a:hover, .pagination>.active>a:focus, .pagination>.active>span:hover, .pagination>.active>span:focus {
    color: #fff;
	border-color:  var(--color-primary);
    background-color:  var(--color-primary);
}

.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
    color: #fff;
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
}

.pagination li a, .pagination li>span {
	padding: 10px;
	border-radius: 0!important;
	background-color: #f7f7f7;
	font-weight: 600;
}

.page-link:focus {
    box-shadow: none;
}

.disabled > .page-link, .page-link.disabled {
    color: #bbb;
	background-color: #f7f7f7;
}

.pagination li.page-item {
	width: 45px!important;
	text-align: center;
	margin: 4px;
	border-radius: 0;
}

.pagination li:first-child {
	margin-left: 0;
}



/* Droppics - default theme */
.droppicsgallerydefault .wimg.droppicslightbox {
	display: flex;
	width: 25%!important;
	height: 100%!important;
	padding: 0px!important;
	margin: 0px!important;
}

.droppicsgallerydefault .wimg.droppicslightbox .cboxElement {
	width: 100%!important;
    aspect-ratio: 3 / 2!important;
	margin: 2px;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 399px) {
	.droppicsgallerydefault .wimg.droppicslightbox {
		width: 100%!important;
	}
}

@media screen and (min-width: 400px) and (max-width: 767px) {
	.droppicsgallerydefault .wimg.droppicslightbox {
		width: 50%!important;
	}
}

.droppicsgallerydefault .wimg.droppicslightbox .cboxElement img {
	border-radius: 0px!important;
	margin-top: 0px!important;
	margin-right: 0px!important;
    margin-left: 0px!important;
	width: 100%!important;
	height: 100%!important;
	object-fit: cover; 
	transition: 0.8s ease;
}

.droppicsgallerydefault .wimg.droppicslightbox .cboxElement:hover img {
	transform: scale(1.05);
    filter: brightness(70%);
}

.droppicsgallerydefault .wimg.droppicslightbox .cboxElement::before {
	content: "\f00e"; 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: transparent; 
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	font-size: 38px; 
	transition: color 0.3s ease; 
	z-index: 1;
	opacity: 0.8;
}

.droppicsgallerydefault .wimg.droppicslightbox .cboxElement:hover::before {
	color: #fff; 
}



/* Scroll up button */
.sp-scroll-up {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 0;
}

.sp-scroll-up:hover, .sp-scroll-up:focus, .sp-scroll-up:active {
    color: #fff;
	background-color: var(--color-secondary);
}