* {
	font-family: 'Assistant', arial, sans-serif;
}

/* Colors */

:root {
	--web-primary-color: #789a78;
	--web-primary-hover-color: #00486e;
	--web-links-color: #0372ac;
	--web-links-hover-color: #005888;
	--web-mobile-nav-bg: #1d252ae0;
	--web-side-nav-title-bg: #0372ac;
	--web-side-nav-title-text: #fff;

  --col5: #830d29;
  --col4: #da7d00;
  --col3: #b0c00f;
  --col2: #789a76;
  --col1: #7893ae;

}

/* Bootstrap Override */
@media (min-width: 1200px) {
    .container {
        width: min(100%, 92%);
        max-width: unset;
    }
}

a {
	color: var(--web-links-color);

	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

a:hover, a:focus {
	color: var(--web-links-hover-color);
}

.btn-primary {
	background: var(--web-primary-color);
	border: 1px solid var(--web-primary-color);
}
.btn-primary:hover, .btn-primary:focus {
	background: var(--web-primary-hover-color);
	border: 1px solid var(--web-primary-hover-color);
}

.btn-outline-primary {
    color: var(--web-primary-color);
    border-color: var(--web-primary-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--web-primary-hover-color);
	border-color: var(--web-primary-hover-color);
}

figure {
	margin: 0;
}

@media (min-width: 992px) {
	.table-responsive {
		display: table;
	}
}

.table {
	border: 1px solid var(--web-primary-color);
}

.table td, .table th {
	border-top: 1px solid var(--web-primary-color);
}

.table thead th {
    border-bottom: 2px solid var(--web-primary-color);
    background: #e6f6ff;
}

.table-bordered td, .table-bordered th {
    border: 1px solid var(--web-primary-color);
}

legend {
	font-size: 1rem;
}

.text-right {
	text-align: right!important;
}
.text-left {
	text-align: left!important;
	
}

.float-right {
	float: right!important;
}
.float-left {
	float: left!important;
}
.align-items-center .float-left,.align-items-center .float-right{
    z-index: 3;
}
.align-items-center {
	display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 1600px){
	.container {
		min-width: 1540px;
	}
}


/* Template */

body {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

/* Navigation */

.header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header nav a.on,
.header nav li.on > span > a {
	font-weight: bold;
}

.header nav button {
	display: none;
}
	
.nav-top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #d8e0e7;
}

.header-top-search {
    display: flex;
    align-items: center;
    position: relative;
    width: 240px;
}
.form-search {
    min-width: 350px;
}
.form-search i {
    position: absolute;
    right: 12px;
    color: #7893ac;
    font-size: 14px;
    pointer-events: none;
}
span.nav-top-title {
    font-size: 1.4rem;
}
.form-search input {
    width: 100%;
    padding: 11px 35px 11px 12px;
    border: 0;
    border-right: 1px solid #e2e8f0;
    font-size: 1.2rem;
    color: #7b93ac;
    outline: none;
    transition: all 0.2s ease;
}

.form-search ::placeholder {
  color: #7893ac;
  font-size: 1.2rem;
}
.form-search input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(120, 147, 172, 0.15);
}
@media (max-width: 991px) {
	.form-search {
		min-width: 100px;
	}
}
@media (min-width: 1200px) {

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

	.header nav > ul {
		margin: 0 auto;
		text-align: center;
		position: relative;
	}
	
	.header nav li:hover > ul {
		display: block;
	}

	.header nav > ul > li {
		display: inline-block;
		position: relative;
	}
	
	.header nav > ul > li > span > a {
		display: block;
		padding: 10px 0px;
		font-size: 1.2rem;
		font-weight: 500;
		color: #1a1a1a;
		text-decoration: none;
		font-family: 'Assistant', sans-serif;
		transition: color 0.2s ease;
	}
	
.header nav > ul > li > span > a:after {
	content: "\2022";
    font-size: 24px;
    line-height: 1;
    vertical-align: middle; 
    padding: 0 15px;
}

.header nav > ul > li:nth-last-child(5n+1) > span > a:after { color: #7893ac; }
.header nav > ul > li:nth-last-child(5n+2) > span > a:after { color: #789a78; }
.header nav > ul > li:nth-last-child(5n+3) > span > a:after { color: #b1c037; }
.header nav > ul > li:nth-last-child(5n+4) > span > a:after { color: #da7d1d; }
.header nav > ul > li:nth-last-child(5n+5) > span > a:after { color: #830e2b; }
.header nav > ul > li:last-child > span > a:after {
	display:none;
}
	.header nav > ul > li > span > a:hover,
	.header nav > ul > li:hover > span > a {
		
	}
	
	.header nav > ul > li.on > span > a,
	.header nav > ul > li > span > a.on {
		
	}

	.header nav > ul > li > ul {
		display: none;
		
		text-align: right;
		position: absolute;
		top: 100%;
		right: 50%;
		z-index: 9999;
		width: 300px;
		margin-right: -150px;
		background: #fff;
		color: #000;
		padding: 1rem;
		
		backface-visibility: hidden;
		transform: translateZ(0);
		-webkit-font-smoothing: subpixel-antialiased;
	}

	.header nav > ul > li > ul > li > span > a {
		font-size: 1.1rem;
	}
	
	.header nav > ul > li > ul > li > span > a > em.arrow {
		content: '';
		font-family: 'FontAwesome';
		font-style: normal;
		display: none;
	}
	
	.header nav > ul > li > ul > li > span > a > em.arrow:before {
		content: '\f104';
	}
}

@media (max-width: 1199px) {
	.header .navigation {
		display: none;
	}
}
@media (min-width: 1200px) {
    .header nav > ul > li:nth-last-child(5n+1) { --menu-theme-color: #7893ac; }
    .header nav > ul > li:nth-last-child(5n+2) { --menu-theme-color: #789a78; }
    .header nav > ul > li:nth-last-child(5n+3) { --menu-theme-color: #b1c037; }
    .header nav > ul > li:nth-last-child(5n+4) { --menu-theme-color: #da7d1d; }
    .header nav > ul > li:nth-last-child(5n+5) { --menu-theme-color: #830e2b; }

    .header nav > ul > li > ul {
        display: block !important;
        text-align: right;
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        z-index: 9999;
        width: 660px;   
        background: #ffffff;  
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-top: 2px solid var(--menu-theme-color);    
        border-radius: 0 0 24px 24px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.01);   
        column-count: 2;
        column-gap: 50px;
        column-rule: 1px dashed rgba(0, 0, 0, 0.06); 
        padding: 0 40px;    
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.25s ease, 
                    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        margin-top: 0;
		top: 105%;
        right: 50%;
        transform: translateX(0%);
    }

    .header nav > ul > li:hover > ul {
        max-height: 550px;
        opacity: 1;
        padding: 40px;
        pointer-events: auto;
		z-index: 0;
    }

    .header nav > ul > li > ul > li {
        display: block;
        break-inside: avoid;
        margin-bottom: 4px;
    }

    .header nav > ul > li > ul > li > span > a {
        font-family: 'Assistant', sans-serif;
        font-size: 1.05rem;
        font-weight: 500;
        color: #000000;
        text-decoration: none;
        display: inline-flex; 
        align-items: center;
        padding: 10px 0;
        position: relative;
        transition: color 0.25s ease, padding 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .header nav > ul > li > ul > li > span > a::after {
		content: '';
        position: absolute;
        bottom: 4px;
        right: 24px;
        width: 90%;
        height: 1px;
        background-color: var(--menu-theme-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .header nav > ul > li > ul > li > span > a::before {
        content: '\f177'; 
        font-family: 'FontAwesome';
        font-style: normal;
        margin-left: 10px;
        color: #000000; 
        font-size: 0.85rem;
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
    }

    .header nav > ul > li > ul > li > span > a:hover {
        padding-right: 6px; 
        background: none !important; 
        text-decoration: none;
    }

    .header nav > ul > li > ul > li > span > a:hover::after {
        transform: scaleX(1);
    }

    .header nav > ul > li > ul > li > span > a:hover::before {
        color: var(--menu-theme-color);
        transform: translateX(-4px);
    }
    
    .header nav > ul > li::before {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 20px;
        background: transparent;
    }
}

/* Header */

.header {
    border-top: 2px solid #779a75;
    background:#fff;
    color: #000;
    height: 105px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
	filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3));
}

.header.offset {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
}


/* Logo */
.header-bg {
    display: flex;
    flex-direction: row;
    align-items: start;
    height: 100%;
}
.header-right {
	width: 15%;
	min-width: 280px;
    display: flex;
    flex-direction: row;
    align-items: start;
    height: 100%;
    align-items: center;
}
.header-left {
    width: 85%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.header .logo img {
	display: block;
    height: 95px;
	margin-top: 10px;
	margin-right: 2rem;
}
#megamenu-button {
    color: #789a78;
    font-size: 30px;
    padding: 1.9rem;
    padding-left: 2.4rem;
    margin-left: 2.4rem;
    border-left: 1px solid #d6dee6;
	position: relative;
	display: none;
}
#megamenu-button::after{
	content: "";
    position: absolute;
    top: 98%;
    left: 53%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffffff;
    width: 0;
    height: 0;
	display:none;
}
a.logo:before {
    background-image: url(images/deco-mainLogoBg.svg);
    content: "";
    position: absolute;
    width: 306px;
    height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: 1px;
}
#megamenu-button:hover::after{
    display:block;
}
@media (max-width: 991px) {
	.header {
  	  height: 186px;
	}
	.header .logo img {
	    height: 90px;
	}
	.header-right {
	    width: 15%;
	    min-width:220px;
	}
	a.logo:before{
		width:280px;
	}
	.header-bg {
	    flex-direction: column-reverse;
	}
	.header-left {
	    width: 100%;
	    padding: 11px 10px;
	}
	a.logo:before {
	    top: 82px;
	}
}
/* Header Icons */

.header-side {
	position: absolute;
	top: 77px;
	left: 3.9rem;
	z-index: 2;
}

a.icon-btn {
    float: right;
    width: 45px;
    height: 45px;
    background: #0d227c;
    border: 2px solid white;
	color: #fff;
	border-radius: 50%;
	margin-left: .5rem;
	background-size: cover !important;
	 transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                filter 0.3s ease;
}
a.icon-btn:hover {
    filter: opacity(0.9);
    transform: scale(1.1); 
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5); 
}
 a.icon-btn > span {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

 a.icon-btn em {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	font-size: 26px;
}
.footer .social-icons {
    margin-top: 1rem;
}
.footer a.icon-btn {
    width: 30px;
    height: 30px;
    background-size: contain !important;
    border: none;
    box-shadow: none;
}
a.icon-btn.search {
	background: #0372ac;
}
a.icon-btn.facebook {
	background: #2b6da4;
}
 a.icon-btn.instagram {
	background: #b753ad;
}

@media (max-width:1550px) {
    .header-side {
        top: 94px;
    }
}
@media (max-width: 991px) {
	.header-side {
		display: none;
	}
}

/* Header Search */



.header-search .content {
	position: relative;
	height: 100%;
}

.header-search input {
	border: 0;
	background: #fff;
	width: 100%;
	font-size: 1.5em;
	padding: 30px;
	height: 100%;
	outline: none;
	transition: all 0.3s ease;
}

.header-search button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100px;
	background: none;
	border: 0;
	cursor: pointer;
}

.header-search button.submit {
	left: 101px;
	font-size: 30px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.form-search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; 
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-submit-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    
}
.search-submit-btn svg {
    transition: stroke 0.3s ease, transform 0.3s ease;
}

#idx-search-input:hover + .search-submit-btn svg,#idx-search-input:focus + .search-submit-btn svg  {
    stroke: #7b93ac;
    transform: scale(1.5);
}
.form-search-container .search-submit-btn {
    left: 35px;
}
@media (max-width: 991px) {
	.header-search input {
		font-size: 1.2rem;
		padding: .5rem 1rem;
	}
	.header-search button {
		width: 50px;
		padding: .5rem 1rem;
	}
	.header-search button.submit {
		left: 51px;
		font-size: 18px;
	}
}
.page-wrapper .row, .col-lg-12.sticky-content, .col-lg-9.sticky-content, .col-lg-3.sticky-content{
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
/* Toggle Navigation Button */

a.toggle-nav {
	display: none;
}

@media (max-width: 991px) {
	a.toggle-nav {
        position: absolute;
        top: 100px;
        left: 65px;
        width: 40px;
        height: 40px;
        color: #779a75;
        display: block;
        padding: .6rem;
        text-align: center;
        border-radius: 50%;
	}
	
	a.toggle-nav em {
		font-size: 33px;
	}
}

/* Footer */
.footer {
    padding: 1.5rem 0;
}
.footer-info {
    margin-top: 1rem;
	line-height: 0.5;
    font-weight: 600;
	z-index: 3;
}
.partners-section {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
    padding: 100px 0 40px 0;
}

.partners-section .line {
    flex-grow: 1; 
    height: 1px;
    background-color: #d8e0e7;
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    padding: 0 20px; 
    flex-shrink: 0; 
}

.logo-item img {
    display: block;
    max-height: 90px;
    width: auto;  
    object-fit: contain;
}
.logos-container {
    perspective: 1000px; 
}
.logos-container .logo-item {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
	    width: 18%;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.2) rotateX(10deg);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0 180px;
    position: relative;
    min-height: 250px;
}

.footer-sections-grid.row {
    display: flex;
	z-index: 3;
	column-wrap: wrap;
    width: 500px;
}

.footer-sections-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-sections-grid li a {
    color: #1a1a1a; 
    text-decoration: none;
    font-size: 1.1rem;    
    transition: color 0.2s ease-in-out;
}

.footer-sections-grid li a:hover {
    color: #555555;     
    text-decoration: none;
}

.footer-bottom-strip {
    border-top: 1px solid #d8e0e7;
    margin: 0 75px;
    padding: 1rem 0 0 0;
}
.footer-bottom-strip a {
    color: #000000;
}
.heart {
    color: #7a2d2d;
    display: inline-block;
    margin: 0 3px;
    font-size: 1.2em;
}

.footer-center-bg {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 400px;
    height: 280px;
    z-index: 1;
    pointer-events: none;
    background-color: #ffffff;
}

.footer-center-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(images/deco-dotLogo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.3;
}

.footer-sections-grid .col ul li {
    margin-bottom: 5px;
}

.footer-sections-grid .col ul li a {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.footer-sections-grid .col ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #7e9392; 
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}

.footer-sections-grid .col ul li a:hover {
    color: #586766; 
}

.footer-sections-grid .col ul li a:hover::after {
    transform: scaleX(1);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

.social-icons .icon-btn { 
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.social-icons .icon-btn:hover {
    transform: translateY(-6px) scale(1.08); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-icons .icon-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .footer-info {
        line-height: 1.2;
    }
	@media (max-width:1200px) {
		.footer-sections-grid.row {
			width: 100%;
		}
	}
	.align-items-center .text-right, .align-items-center .text-left {
		z-index: 3;
	}
	
@media (max-width:1100px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding-left: 0px;
    padding-right:0px;
}
    .partners-section {
    padding: 50px 0 30px 0;
}
    .partners-section .line {
        width: 80px;
        flex-grow: 0;
    }
    
    .logos-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
        padding: 0;
		width: 100%;
    }
    
    .logo-item img {
        max-height: 200px;
        height: auto;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 26px;
    }

    .footer-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
        text-align: center;
        z-index: 3;
        border-top: 1px solid #d7dfe7;
        margin-top: 0rem;
        padding-top: 3rem;
    }

    .footer-center-bg {
        position: absolute;
        left: 50%;
        top: -41px;
        transform: translateX(-50%);
        width: 300px;
        height: 280px;
        z-index: -1;
        pointer-events: none;
        background-color: #ffffff;
        opacity: 0.5;
    }

    .footer-bottom-strip {
      margin: 50px 10px 0;
    }

    .footer-bottom-strip .row {
        flex-direction: column;
        gap: 10px;
        text-align: center !important;
    }

    .footer-bottom-strip .col-sm-6 {
        text-align: center !important;
    }
	.align-items-center {
	display: block; 
	-ms-flex-wrap: wrap;
	flex-wrap: nowrap; 
}
  .align-items-center  .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Breadcrumbs */

.breadcrumbs ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs ul > li {
	display: inline-block;
}

.breadcrumbs ul > li:after {
	font-family: 'FontAwesome';
	content: '\f104';
	padding: 0 5px;
	display: inline-block;
}

.breadcrumbs ul > li:last-child:after {
	content: '';
	padding: 0;
}

/* bNagish */

.bNagish-toggle {
    bottom: auto;
    top: 79px;
    left: 16px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    border: 2px solid white;
}
.bNagish-toggle em {
	font-size: 26px;
}
.bNagish-toggle:hover .text, .bNagish-toggle:focus .text {
    padding: 3px;
	border-radius: 30px;
}
@media (max-width: 1550px) {
    .bNagish-toggle {
        top: 95px;
        left: 16px;
        width: 46px;
        height: 46px;
        border: 2px solid white;
    }
}
@media (max-width: 991px) {
    .bNagish-toggle {
        top: 102px;
        left: 8px;
        background: #ffffff00;
        box-shadow: none;
        color: #779a75;
    }
	.bNagish-toggle em {
    font-size: 33px;
    font-weight: bold;
}
}

/* Skip Ads */

.skip-ad {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.skip-ad .skip-ad-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px;
}

.skip-ad .skip-ad-content {
	position: relative;
}

.skip-ad .skip-ad-content .msg {
	background: #fff;
	padding: 30px;
}

.skip-ad img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 3rem;
}

.skip-ad .skip-ad-close {
	position: absolute;
	top: -25px;
    left: -30px;
	width: 100%;
	text-align: left;
	color: #000;
}

.skip-ad #close-skip-ad {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3rem;
	background: #fff;
	color: #000;
	border: 2px solid #000;
}

.skip-ad #close-skip-ad:focus, .skip-ad #close-skip-ad:hover {
	background: #000;
	color: #fff;
	border: 2px solid #fff;
}


/* Mobile Navigation */

.mobile-navigation  {
	position: fixed;
	top: 0;
	left: -300px;
	width: 300px;
	height: 100%;
	z-index: 9999999;
	
	transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	
	visibility: hidden;
	
	box-shadow: 0 0 0 rgba(0,0,0,0);

    background: #719071ed;	
    border-right: 2px solid #fff;
	box-shadow: 0 0 50px rgb(0 0 0 / 50%);
    backdrop-filter: blur(6px);
}

.mobile-navigation.open {
	left: 0;
	visibility: visible;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.mobile-navigation .content {
	width: 100%;
	height: 100%;
	overflow: auto;
	position: relative;
}

.mobile-navigation .content .head {
	width: 100%;
	text-align: left;
	margin-bottom: -1rem;
}

.mobile-navigation .content .head .button {
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border: 0;
    font-size: 20px;
    margin: 1rem;
}

.mobile-navigation nav {
	margin: 1rem;
}
.mobile-navigation .mobile-services {
  margin: 1.2rem 1rem;
  padding: 0.25rem;
}

.mobile-navigation .mobile-services h2 {
  margin: 0 0 0.8rem 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: right;
  opacity: 0.95;
}

.mobile-navigation .mobile-services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.mobile-navigation .mobile-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: .3rem;
  
  background: rgb(255 255 255 / 24%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation .mobile-service-item:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.mobile-navigation .mobile-service-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mobile-navigation .mobile-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1px;
}

.mobile-navigation .mobile-service-text {
  display: block;
  width: 100%;
}

.mobile-navigation .mobile-service-text strong {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.mobile-navigation .mobile-service-text small {
  display: none;
}
.mobile-navigation nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-navigation nav a {
	    color: #ffffff;
    font-size: 1.2rem;
}

.mobile-navigation nav a.on,
.mobile-navigation nav li.on > span > a {
	font-weight: bold;
}

.mobile-navigation nav button {
	display: none;
}

.mobile-navigation nav ul ul {
	display: none;
}

.mobile-navigation nav li {
	border-bottom: 1px solid #ddd;
}
.mobile-navigation nav li > span {
	display: block;
	position: relative;
}
.mobile-navigation nav ul ul {
	background: rgba(0,0,0,0.02);
}
.mobile-navigation nav button {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
.mobile-navigation nav a {
	display: block;
	padding: 15px;
	margin-right: 48px;
}
.mobile-navigation nav .toggle-sub-menu {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	overflow: hidden;
	
	padding: 0 15px;
	background: none;
	border: 0;
	color: #ffffff;
	
	font-family: 'FontAwesome';
	font-style: normal;
}
.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
}
.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
}
.mobile-navigation nav .toggle-sub-menu.opened:after {
	content: '\f078';
}
.mobile-navigation nav .toggle-sub-menu.no-sub-menu:after {
	content: '\f111';
	font-size: 80%;
}
.mobile-navigation nav .toggle-sub-menu.external-link:after {
	content: '\f08e';
}

.mobile-navigation-search {
	position: relative;
	margin: 1rem;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.mobile-navigation-search input {
	display: block;
	width: 100%;
	padding: 1rem;
	background: #fff;
	border: 0;
        border-radius: 30px;
}

.mobile-navigation-search button {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: none;
	border: 0;
	padding: 0 1rem;
}

.mobile-navigation .content .head .button {
    background: #ffffff00;
    color: rgb(255 255 255);
}

.mobile-navigation .mobile-social {
	display: flex;
	padding: 0 1rem;
	gap: 15px;
}

.mobile-navigation .mobile-social > a {
	flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #fff;
    font-size: 24px;
}
/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Page Header */

.page-header {

	-moz-background-size: cover;
	-o-background-size: cover;
	margin-top:105px;
	height: 470px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	z-index: 1;
	display: flex;
	width: 90.5%;
	margin-inline: auto;
	border-radius: 0 0 70px 70px;
}

/* Page Content */

.page-content {
	background: #ffffff00;
	margin-bottom: 3rem;
}

@media (min-width: 992px) {
	.page-content {
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	.page-content {
		margin: 0;
	}
}

.page-content-head {
	background: #789a78e6;
	border-radius: 0 0 70px 70px;
	color: #fff;
	padding: 2rem 4rem;
	position: relative;
	width: 100%;
	z-index: 1;
	margin: auto;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.page-content-head {
		padding: 1rem;
		border-radius: 0 0 20px 20px;
	}
	.page-header{
		border-radius: 0 0 20px 20px;
		width: 100%;
		height: 400px;
	}
}

.page-content-head h1 {
	margin: 0;
	font-weight: 900;
	font-size: calc(2.5vw + 12px);
	line-height: 1;
}

.page-content-head a {
	color: rgba(255,255,255,0.8);
	font-size: 1.1rem;
}

.page-content-head button {
	display: none;
}

@media (max-width: 991px) {
	.page-content-head button {
		display: block;
		background: none;
		border: 0;
		padding: 0;
		position: absolute;
		left: 15px;
		bottom: 1rem;
		color: #fff;
		font-size: 2rem;
	}
	
	.page-content-head button em:before {
		content: "\f13a";
	}
	
	.page-content-head button.opened em:before {
		content: "\f139";
	}
}

.page-content-body {
	padding: 1.5rem;
	min-height: 20rem;
	margin: 1rem 5%;
}

@media (max-width: 991px) {
	.page-content-body {
		padding: 1rem;
	}
}

.page-content-nav {
	display: none;
}

@media (max-width: 991px) {
	.page-content-nav {
		display: block;
		margin: 2rem 0;
		background-color: #fff;
	}
}

.page-content-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-content-nav ul > li {
	border-bottom: 1px solid #ddd;
}

.page-content-nav ul > li a {
	display: block;
}

/* Social Sharing Buttons */

.social-share {
	font-size: 16px;
	text-align: center;
}

.social-share .h6 {
	font-size: 1.3rem;
}

.social-share a {
	min-width: 40px;
	text-align: center;
	display: inline-block;
}

/* InPage Navigation */

.sub-pages-nav.outside {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.sub-pages-nav ul {
	list-style: none;
	padding: 0;
	margin: 0 -1rem;
}

.sub-pages-nav ul ul {
	display: none;
}

.sub-pages-nav ul > li {
	width: 50%;
	float: right;
	position: relative;
	padding: 1rem;
}


	.sub-pages-nav ul > li {
		width: 100%;
	}


.sub-pages-nav.with-icons ul>li {
	width: 25%;
}

@media (max-width: 768px) {
	.sub-pages-nav.with-icons ul>li {
		width: 50%;
	}
}

.sub-pages-nav a {
	display: block;
	color: inherit;
	border-right: 3px solid #0372ac;
	background: #f1f1f1;
	padding: 1rem;
	font-size: 1.3rem;
}

.sub-pages-nav.with-icons a {
	display: block;
	color: inherit;
	background: #fff;
	border: 1px solid #0372ac;
	color: #0056b3;
	padding: 1rem;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.1rem;
	height: 160px;
	position: relative;
	box-shadow: 0 0 26px rgb(0 0 0 / 13%);
}

.sub-pages-nav.with-icons a:hover {
	transform: scale(1.1);
}

.sub-pages-nav.outside a {
	background: #fff;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.sub-pages-nav .arrow {
	font-family: 'FontAwesome';
	font-style: normal;
	color: #657177;
}

.sub-pages-nav .arrow:before {
	content: '\f104';
}

.sub-pages-nav.with-icons a .icon {
	height: 90px;
	margin-bottom: .5rem;
	display: block;
	position: relative;
}

.sub-pages-nav.with-icons a .icon img {
	max-width: 100%;
	max-height: 90px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}


.sub-pages-nav ul::after {
  content: "";
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 200px;
  padding: 0.5rem;
  visibility: hidden;
}
.sub-pages-nav ul li:last-child::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: 0;
  visibility: hidden;
}
.sub-pages-nav ul > li::after {
  content: "";
  content: none;
  position: absolute;
  right: 10px;
  height: calc(90% - 1rem);
  background: var(--prime1);
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  border-radius: 0 50px 50px 0;
}

.sub-pages-nav ul > li:nth-child(5n + 1) a .icon {
  background: var(--col1);
}
.sub-pages-nav ul > li:nth-child(5n + 2) a .icon {
  background: var(--col2);
}
.sub-pages-nav ul > li:nth-child(5n + 3) a .icon {
  background: var(--col3);
}
.sub-pages-nav ul > li:nth-child(5n + 4) a .icon {
  background: var(--col4);
}
.sub-pages-nav ul > li:nth-child(5n + 5) a .icon {
  background: var(--col5);
}

.sub-pages-nav a {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  border: none;
  padding: 2px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sub-pages-nav li a {
  position: relative;
  display: flex;
}
.sub-pages-nav li a .fa-external-link {
  color: var(--prime7);
  font-size: 0.8rem;
  margin-top: 5px;
  position: absolute;
  left: 0.5rem;
}
.sub-pages-nav li a:hover {
  border-color: #a0a0a0;
  box-shadow: 0 0 9px rgba(172, 172, 172, 0.2);
  .arrow {
    inset-inline-end: 9px;
    color: #a0a0a0;
  }
}
.sub-pages-nav a .icon {
  position: relative;
  border-radius: 0 15px 15px 0;
  padding: 0;
  width: 22px;
}
.sub-pages-nav a > span {
  display: table-cell;
  vertical-align: middle;
  padding: 1.1rem 0.75rem;
  width: 98%;

  @media (max-width: 387px) {
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
  }
}

.sub-pages-nav .arrow {
  font-family: "FontAwesome";
  font-style: normal;
  float: left;
  margin-right: 10px;
  color: #b6b6b6;
  position: absolute;
  inset-inline-end: 15px;
  transition: all 0.2s ease-out;
}
/*with-icons*/


.sub-pages-nav.with-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #e1e8f0;
  transition: all 0.3s ease;
  background: #fff;
  color:#2b4056;
  font-weight: bold;
  font-size: 1.1rem;
}

.sub-pages-nav.with-icons .icon {
  width: 60px;
  height: 60px;
  position: relative;
}

.with-icons ul > li .icon {
  background:none!important;
}
/* Mode Table Of Contents */

.toc-container {
	border: 1px solid #ddd;
	background: #f1f1f1;
	display: inline-block;
	padding: .5rem;
}

.toc-toggle a span {
	display: none;
}

.toc-toggle a:before {
	content: 'ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢';
}

.toc-container.active .toc-toggle a:before {
	content: 'ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨';
}

.toc-expendable {
	display: none;
}

.toc-expendable ol {
	margin: 0;
	margin-top: 1rem;
}

/* InPage Style - Rich Content */

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
	margin-bottom: 1rem;
	font-weight: bold;
}

.rich-content h2 {
	color: #333;
}

.rich-content h3 {
	color: #333;
}

.rich-content h4 {
	color: #333;
}

.rich-content h5 {
	color: #333;
}

.rich-content h6 {
	color: #333;
}


.rich-content .contact-man {
	display: block;
	color: #404e5c;
	border: 1px solid #dbe0e5;
	background: #f9faf8eb;
	padding: 1rem;
	border-radius: 50px;
	/* box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); */
}

.rich-content .contact-man .contact-name {
	font-size: 1.5rem;
	font-weight: bold;
}
.rich-content .contact-man em {
    color: #ffffff;
    /* background: #404e5c; */
    color: #ffffff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.8rem;
}
.rich-content .contact-man .fa-phone{
	background: #7893ae;
}
.rich-content .contact-man .fa-mobile{
	background: #3b5f83;
}
.rich-content .contact-man .fa-envelope{
	background: #404e5c;
}

.rich-content .contact-man em:before {
    color: #ffffff;
}

.rich-content .contact-man .col-md-4, .rich-content .contact-man .col-md-8 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rich-content .contact-man a {
    color: #404e5c;
    font-weight: bold;
}



/* Media Prints * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Media Print */

@media print {
	.page-content {
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}
	.header,
	.blocks-skip,
	#bNagish,
	.mobile-navigation-container,
	.page-header,
	.social-share,
	.footer,
	.skip
	{
		display: none;
	}
}

/* Card */
.card {border-radius: 15px;}
.card-header {
	background: #729a74;
	color: #fff;
}
.card-header:first-child{
	border-radius:15px 15px 0 0;
}
.card-header h2 {
	color: inherit;
	margin: 0;
	font-size: 1.3rem;
	padding: 0.25rem;
	/* font-weight: bold; */
}
.card-body {
	background: #fbfbfb;
}


/* InPage form category group */

.form-category-group {
	background: #f1f1f1;
	border-right: 3px solid #2d55aa;
	padding: .75rem;
	margin-bottom: 1.5rem;
}

.form-category-group .form-category-group {
	background: #fff;
}

.form-category-group a {
	color: inherit;
}

.form-category-group .tofes-link {
	display: inline-block;
	padding: .1rem .6rem;
	border-radius: 2rem;
	border: 1px solid #ddd;
	background: #fff;
	margin-left: .5rem;
	margin-bottom: .8rem;
}


/* page event */
/* page event */
.events-carousel.row {
    display: block !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
    clear: both;
    position: relative;
}

.events-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    justify-content: center;
    direction: ltr !important;
    justify-content: center;
    display: block;
    margin-left: inherit;
    margin-right: inherit;
}

.events-carousel .slick-slide {
    display: flex;
    justify-content: center;
    direction: rtl !important;
    transition: transform 0.4s ease;
    transform: scale(1) !important;
}

.events-carousel .event-card {
    padding: 0 15px;
}

.page-event-promo {
    border: 1px solid #eef2f5;
    border-radius: 20px;
    display: block;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 4px 15px rgb(0 0 0 / 21%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    padding: 1rem;
}

.page-event-promo:hover, 
.page-event-promo:focus {
    text-decoration: none;
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    color: #000000;
}

.page-event-promo .pic {
    height: 180px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.page-event-promo .pic > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-event-promo .details {
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-event-promo .date {
    background: #789a76;
    color: #fff;
    padding: 3px 12px;
    border-radius: 2rem;
    display: inline-block;
    font-size: 0.85rem;
    align-self: flex-start;
}

.page-event-promo h3 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.4;
    margin: 15px 0 0 0;
    height: 2.8em;
    min-height: 2.8em;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden;
}

.page-events h3:after {
    display: none !important;
}

.page-event-promo .location {
    position: relative;
    margin-top: 12px;
    padding-top: 12px;
}

.page-event-promo .location::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background-color: #7a9a79;
    border-radius: 2px;
}

.page-event-promo .details-params div {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.page-event-promo .details-params em {
    color: #789a78;
    margin-left: 8px;
    font-size: 1rem;
}

.page-events .read-more {
    color: #789a76;
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: 15px;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
}

.page-event-promo .read-more::after {
    content: ' \2190';
    font-size: 1.1rem;
    margin-right: 5px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.page-event-promo:hover .read-more::after {
    transform: translateX(-4px);
}

.page-events .more {
    text-align: left;
    margin-top: 20px;
    padding: 0 15px;
}

.page-events .more a {
    color: #789a76;
    text-decoration: underline;
}

.slick-prev, .slick-next {
    z-index: 999 !important;
    width: 50px !important;
    height: 50px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.slick-prev {
    right: 15px !important;
    left: auto !important;
}

.slick-next {
    left: 15px !important;
    right: auto !important;
}

.slick-prev:hover, .slick-next:hover {
    background: #789a76 !important;
    box-shadow: 0 6px 15px rgba(120, 154, 118, 0.5) !important;
}

.slick-prev:before, .slick-next:before {
    font-size: 24px !important;
    color: #789a76 !important;
    transition: color 0.3s ease !important;
    line-height: 50px !important;
    display: block !important;
    opacity: 1 !important;
    font-weight: bold !important;
    text-align: center !important;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .events-carousel .event-card {
        padding: 0 6px; 
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .page-event-promo h3 {
        font-size: 1.15rem;
    }
    
    .slick-prev, .slick-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .slick-prev:before, .slick-next:before {
        font-size: 20px !important;
        line-height: 40px !important;
    }
    
    .slick-prev {
        right: 5px !important;
    }
    
    .slick-next {
        left: 5px !important;
    }
}
/* InPage phonebook */

.page-phonebook-category {
	margin: 15px 0;
	
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;

	border: 1px solid #E2E6EF;
	border-radius: 20px;
}
.phonebook .col-md-7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-phonebook-category-title h3 {
	color: #0372ac;
    background: #fff;
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    cursor: pointer;
}

.page-phonebook-category-title h3:before {
	content: '\f196';
	font-family: 'FontAwesome';
	padding-left: .5rem;
}

.page-phonebook-category.opened .page-phonebook-category-title h3:before {
	content: '\f147';
	font-family: 'FontAwesome';
	padding-left: .5rem;
}

.page-phonebook-category-title h3:hover,
.page-phonebook-category.opened .page-phonebook-category-title h3 {
	background-color: #0372ac;
	color: #fff;
}
.page-phonebook-category-body {
	display: none;
	background-color: #fff;
	border: 1px solid #0372ac;
}

.page-phonebook-category.opened .page-phonebook-category-body {
	display: block;
	padding: 1rem;
}

.page-phonebook .phonebook h2 {
	border-bottom: 1px solid #ddd;
	color: #0372ac;
	padding: 10px 0;
	font-size: 1.2em;
	margin: 0;
}

.page-phonebook .phonebook.active > h2 {
	padding: 10px;
}

.page-phonebook .phonebook h2 a {
	color: inherit;
}

.page-phonebook .phonebook.active {
	margin-bottom: 15px;
	border: 1px solid #b0b3b6;
	/* box-shadow: 3px 3px 10px rgba(0,0,0,0.1); */
	border-radius: 19px;
	color: #404e5c;
	/* background: linear-gradient(to left, #ffffff, #f0f7ff); */
}

.page-phonebook .phonebook.active > h2 {
	background: #404e5c;
	color: #fff;
	border-radius: 18px 18px 0 0;
}

.page-phonebook .phonebook > h2 > a > em:before {
	content: '\f137';
}

.page-phonebook .phonebook.active > h2 > a > em:before {
	content: '\f13a';
}

.page-phonebook .phonebook .info {
	background: #f9faf8eb;
	padding: 15px;
	border-radius: 0 0 18px 18px;
	/* background: linear-gradient(to bottom, #ffffff, #ecf7ea); */
}


.page-phonebook .phonebook .info:focus {
	outline: 0;
}

.page-phonebook .phonebook .info p {
	margin: 0 0 20px 0;
}

.page-phonebook .member {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.page-phonebook .pic {
	float: right;
	margin-left: 10px;
}

.page-phonebook .pic img {
	display: block;
	max-width: 100px;
}


.page-phonebook .fa-stack {
	font-size: 100%;
	color: #ffffff;
	/* width: 28px; */
	/* height: 28px; */
	/* line-height: 28px; */
	/* text-align: center; */
	/* border-radius: 50%; */
	/* font-size: 0.8rem; */
}

.page-phonebook .phone .fa-stack {
	color: #7893ae;
}

.page-phonebook .mobile .fa-stack {
	color: #3b5f83;
}

.page-phonebook .email .fa-stack {
	color: #404e5c;
}

.page-phonebook .fax .fa-stack {
	color: #804ab2;
}

.page-phonebook .fa-mobile {
	font-size: 130%;
}

.page-phonebook .fa-envelope {
	font-size: 90%;
}

.page-phonebook .fa-fax {
	font-size: 90%;
}

.page-phonebook .contact-info {
	float: right;
}

@media (min-width: 768px) {
	.page-phonebook .contact-info {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.page-phonebook .contact-info {
		margin-left: 5px;
	}
}

.page-phonebook .contact-info a {
	color: inherit;
}


/*title +icon*/
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    position: relative; 
    padding-top: 15px; 
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #000000;
    margin: 0;
    position: relative;
    z-index: 2;
    padding-bottom: 25px;
}

.section-header h2::after {
    display: none !important;
}

.section-header svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    color: #a3b899;
    opacity: 0.2;
    z-index: 1;   
    pointer-events: none;
}

.section-header::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    background-color: #7a9a79;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        padding-bottom: 20px;
    }
    .section-header svg {
        width: 55px;
        height: 55px;
    }
}
/*sub menu pic*/
.sub-pages-nav.with-pics a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e1e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    width: 100%;
    align-items: center;
    text-align: center;
    overflow: hidden; 
}

.sub-pages-nav.with-pics a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-green);
}

.sub-pages-nav.with-pics .pic {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden; 
}

.sub-pages-nav.with-pics .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    transform-origin: center;
    backface-visibility: hidden;
}

.sub-pages-nav.with-pics a:hover .pic img {
    transform: scale(1.1);
}

.sub-pages-nav.with-pics span:not(.pic) {
    font-weight: 700;
    color: #2b4056;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.sub-pages-nav.with-pics a:hover span:not(.pic) {
    color: var(--brand-green);
}
/*sub menu icons*/