@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
body {
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	width: 100%;
	height: 100%;
	color: #938f90;
}

html {
	width: 100%;
	height: 100%;
}

* {
	outline-color: transparent;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}
button{
	border: none;
	outline: none;
}
.logo img {
	width: 135% !important;
	max-width: unset;
	padding-block: 5px;
}
img {
	max-width: 100%;
	height: auto;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-60{
	margin-bottom: 60px;
}
.mb-70{
	margin-bottom: 70px;
}
.mb-75{
	margin-bottom: 75px;
}
.mt-0{
	margin-top: 0;
}
.mt-50{
	margin-top: 50px;
}
.mt-60{
	margin-top: 60px;
}
.mt-70{
	margin-top: 70px;
}
.mt-75{
	margin-top: 75px;
}
:root {
	--transparent-color: transparent;
	--primary-color: #000;
	--white-color: white;
	--green-color: #1bb321;
	--yellow-color: #f7bf20;
	--black-color: #000;
	--p-color: #444444;
	--fw-500: 500;
	--footer-bg:#000000e0;
}

.main-layout {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    height: 100vh;
}
.main-layout > header, .main-layout > footer {
    flex: 0 0 auto;
}
.main-layout > main {
    flex: 1;
}

.title-s1{
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	align-items:center;
	text-align:center;
	grid-gap:20px;
	color: var(--black-color);
	text-transform: uppercase;
	font-size: 2.5rem;
	line-height: 1.4;
}

.text-center {
	text-align: center;
}

.container,.title-container,.shaonmd-slider-wraper {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

@media (max-width:1280px) {
	.container {
		padding: 0 15px;
	}
}



/*---------------------------- navigation -----------------------*/

.navigation-section {
	background: white;
}

.navigation-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: minmax(40px, auto);
	position: relative;
	z-index: 2;
}

.sticky .logo-nav {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.sticky {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	transition: all 0.5s ease 0s;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
	background-color: white;
}

.sticky .nav-class-div ul li a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}

.sticky .nav-class-div ul li ul li a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}

.navigation-section .logo-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(40px, auto);
	align-items: center;
}


/*---------------  */

.logo {
	grid-column: 1 /span 1;
}

.nav-class-div {
	grid-column: 2 /span 3;
	justify-self: end;
}

.menu-toggle {
	grid-column: 1/ span 3;
	display: none;
}

.nav-class-div ul {
	padding: 0;
	margin: 0;
	display: inline-block;
	list-style-type: none
}

.nav-class-div ul li {
	padding: 0;
	margin: 0 5px;
	display: inline-block;
	transition: 500ms left cubic-bezier(.57, .21, .69, 1.25);
}

.nav-class-div ul li {
	position: relative;
	list-style-type: none
}
.nav-class-div ul li.current-menu-item a {
	color: #AF191A;
}
.nav-class-div ul li.menu-item-has-children:before {
	content: "\f0d7";
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 900;
	color: var(--primary-color);
	position: absolute;
	right: -5px;
	margin-top: 15px;
}

.sticky .nav-class-div ul li.menu-item-has-children:before {
	color: var(--primary-color);
}

.sticky .nav-class-div ul li.active.menu-item-has-children:before {
	color: var(--primary-color);
}

.nav-class-div ul li.active.menu-item-has-children:before {
	content: '\f0d7';
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 900;
	color: var(--primary-color);
}

.nav-class-div ul li ul {
	position: absolute;
	left: 0;
	background-color: var(--white-color);
	display: none;
	min-width: 200px;
}

.sticky .nav-class-div ul li ul {
	background-color: var(--white-color);
	box-shadow: 0 15px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.sticky .nav-class-div ul li ul a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
}

.sticky .nav-class-div ul li ul li:not(:last-child) {
	border-bottom: 1px solid #dedcdc;
}

.nav-class-div ul li ul a {
	color: var(--primary-color);
	margin: 10px 1px;
	font-weight: var(--fw-500);
}

.nav-class-div ul li ul li {
	display: block;
	margin: 0;
	padding: 0;
}

.nav-class-div ul li ul li:not(:last-child) {
	border-bottom: 1px solid #c0c0c061;
}

.nav-class-div ul li ul li a {
	margin: 0 10px;
	padding: 3px 0;
	text-transform: capitalize;
	font-size: 14px;
    line-height: 1.5;
}

.nav-class-div ul li a {
	display: block;
	padding: 0 5px;
	margin: 15px 1px;
	text-decoration: none;
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}
@media (max-width:1199px) {
	.navigation-container .sticky {
		padding: 0 15px;
	}
}
@media (max-width:767px) {
	.logo {
		display: block;
		color: var(--primary-color);
		grid-column: 1 /span 3;
	}
	.sticky .logo {
		color: var(--primary-color);
		grid-column: 1 /span 3;
	}
	.nav-class-div {
		grid-column: 1 / span 4;
        justify-self: stretch;
	}
	.menu-toggle {
		grid-column: span 1 / -1;
		grid-row: 1/span 1;
		display: block;
		font-size: 30px;
		justify-self: end;
		cursor: pointer;
	}
	.menu-toggle:before {
		content: "\f0c9";
		font-family: 'Font Awesome\ 5 Free';
		font-weight: 900;
		color: var(--primary-color);
	}
	.sticky .menu-toggle:before {
		color: var(--primary-color);
	}
	.menu-toggle.active:before {
		content: "\f00d";
		font-family: 'Font Awesome\ 5 Free';
		font-weight: 900;
		color: var(--primary-color);
	}
	.sticky .menu-toggle.active:before {
		color: var(--primary-color);
	}
	.nav-class-div {
		display: none;
	}
	.nav-class-div.active {
		display: block
	}
	.nav-class-div.active ul li {
		display: block
	}
	.nav-class-div ul li.menu-item-has-children:before {
		margin-top: 2px;
	}
	.nav-class-div ul {
		display: block
	}
	.nav-class-div ul li ul {
		position: static
	}
}

@media (max-width:767px) {
	.logo img {
		width: 100% !important;
	}
	.nav-class-div ul li.active ul {
		display: block
	}
}

@media (min-width:768px) {
	.nav-class-div ul li:hover ul {
		display: block
	}
}


/* ------------------------Footer------------------------ */

footer {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: var(--white-color);
	background: #050748;
	font-size: 14px;
}

.copyright {
	padding: 0 0 40px;
	color: #fff;
}

.copyright>div {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: minmax(20px, auto);
	align-items: center;
	padding-top: 40px;
}

.copyright>div div:last-child {
	justify-self: end;
}

@media (max-width:992px) {
	.copyright>div {
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
		text-align: center;
	}
	.copyright>div div:last-child {
		justify-self: center;
	}
}


/* ------------------------Footer------------------------ */

.footer-logo img{
	width: 250px;
}


/* ----Footer Social---- */

.footer-addres {
	display: grid;
	grid-auto-rows: minmax(20px, auto);
}

.footer-addres>div:nth-child(1) {
	margin-top: 15px;
}

.social-icons {
	margin-top: 20px !important;
}

.social-icons li {
	display: inline-block;
	margin: 0 10px 5px 0 !important;
	position: relative;
	vertical-align: middle;
}

.social-icons li a {
	color: #fff;
	display: block;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 40px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* ------------------------------------------------------- */

.scrollTop {
	position: fixed;
	right: 15px;
	bottom: 15px;
	background-color: #050748;
	border: 3px solid #eeeeee;
	border-radius: 0;
	padding: 0;
	display: inline-block;
	opacity: 0;
	transition: all 0.4s ease-in-out 0s;
	z-index: 2;
	width: 40px;
	height: 40px;
	line-height: 35px;
	text-align: center;
}

.scrollTop:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
	transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
	background-color: var(--black-color);
	opacity: 1;
}

.scrollTop a {
	font-size: 25px;
	color: #fff;
}



/* ------------------------------------- */

.elementor-button {
    background-color: #69727d;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 15px 30px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    background: #ffbd84;
    background: -moz-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: -webkit-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    -webkit-box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
}


/* ----------------------- */
.services-section,
.elementor-element-8eaa834 {
    background: #e8fffc;
    background: -moz-linear-gradient(top,#e8fffc 0,#fff4f4 100%);
    background: -webkit-linear-gradient(top,#e8fffc 0,#fff4f4 100%);
    background: linear-gradient(to bottom,#e8fffc 0,#fff4f4 100%);
}
.elementor-element-47b0bc75,
.why-choose-us,
.elementor-element-b0e56a8 {
    background: #fffaf5;
    background: -moz-linear-gradient(top,#fffaf5 0,#f8ecff 100%);
    background: -webkit-linear-gradient(top,#fffaf5 0,#f8ecff 100%);
    background: linear-gradient(to bottom,#fffaf5 0,#f8ecff 100%);
}
.footer-contact-us,
.elementor-element-893b062 /* , .elementor-element-5385fd2*/ { 
    background: #D6FFFC;
    background: -moz-linear-gradient(top,#D6FFFC 0,#ffeff5 100%);
    background: -webkit-linear-gradient(top,#D6FFFC 0,#ffeff5 100%);
    background: linear-gradient(to bottom,#D6FFFC 0,#ffeff5 100%);
}

/* --------------------------- */

.elementor-element.elementor-element-7bfd500 .elementor-button-wrapper,
.elementor-element.elementor-element-b38a066 .elementor-button-wrapper {
    margin-top: -80px;
}

/* -------------------------- */

label {
    display: grid;
    width: 100%;
	color: black;
}
.wpcf7 label {
    display: grid;
    width: 100%;
	color: white;
}
input.wpcf7-form-control, textarea.wpcf7-form-control, select.wpcf7-select {
    min-height: 40px;
    border: 2px solid #ccc;
    padding: 10px;
    width: 100%;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
    outline:none;
}

input.wpcf7-form-control.wpcf7-submit {
	font-family: 'Poppins';
    width: fit-content;
    background: #AF191A;
    color: white;
    font-weight: bold;
    padding-inline: 20px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    background: #5aa306;
}

/* --------------- */

input.wpcf7-form-control.wpcf7-submit {
    background-color: #69727d;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 15px 30px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    background: #ffbd84;
    background: -moz-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: -webkit-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    -webkit-box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
}


/* ---------------- */

/* .main-layout > header {
	position: fixed;
	z-index: 999999;
	width: 100%;
}
.navigation-section {
    background: transparent;
} */
/* 
 * 
<div class="main-address">
	<div class="address-parent">
		<div class="address-child"><img src="http://hamletaccountants.floatwave.co.uk/wp-content/uploads/2025/05/phone.png" alt=""></div>
		<div class="address-child"><a href="tel:+123456789">123456789</a></div>
	</div>
	<div class="address-parent">
		<div class="address-child"><img src="http://hamletaccountants.floatwave.co.uk/wp-content/uploads/2025/05/email.png" alt=""></div>
		<div class="address-child"><a href="mailto:info@hamletaccountants.co.uk">info@hamletaccountants.co.uk</a></div>
	</div>
	<div class="address-parent">
		<div class="address-child"><img src="http://hamletaccountants.floatwave.co.uk/wp-content/uploads/2025/05/location.png" alt=""></div>
		<div class="address-child"><a href="#">See Our Location</a></div>
	</div>	
</div>
 *  */

.main-address {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: fit-content(100%) fit-content(100%) fit-content(100%);
    justify-content: space-between;
}

.address-parent {
    display: grid;
    grid-template-columns: fit-content(100%) fit-content(100%);
    align-items: center;
    grid-gap: 5px;
    align-content: center;
}

.address-child:first-child {
    width: 30px;
}

.address-child:last-child a {
    text-decoration: none;
    color: #050748;
    font-size: 15px;
}









/* 
<div class="info-image-wrap">
	<div class="info-image-parent">
		<div class="info-image-child">Looking for expert accounting services?</div>
		<div class="info-image-child"><a href="/contact">Conect with us</a></div>
	</div>
	<div class="info-image-parent">
		<div class="info-image-child"><img src="http://hamletaccountants.floatwave.co.uk/wp-content/uploads/2025/05/professional-call.png" alt=""></div>
	</div>	
</div>
 *  */

.info-image-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background: white;
    margin-block-start: 1vw;
}

.info-image-parent:first-child {
    padding-inline-start: 0;
}
.info-image-parent:first-child .info-image-child:first-child {
    font-size: 22px;
    color: #050748;
    font-weight: 500;
}
.info-image-parent:first-child .info-image-child:last-child a {
    color: red;
    font-size: 15px;
    font-weight: 500;
}

.service-view-more {
	display: block;
	margin-block-start: 0.5vw;
}
.service-view-more a {
	display: inline-block;
	color: black;
	border: 1px solid black;
	padding: 0px 1vw;
}


/* ------------------ */


/* .elementor-element-71aad81 .elementor-element {
  animation: move 5s linear infinite;
  offset-path: rect(0% auto 100% auto);
  background: radial-gradient(#fff, #f1f5f9, transparent);
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
} */



/* 
.elementor-8 .elementor-element-71aad81 .elementor-element:hover .elementor-widget-container {
    background-color: #050748 !important;
	color: white !important;
}

.elementor-8 .elementor-element.elementor-element-25192d6f .elementor-image-box-title

.elementor-8 .elementor-element-71aad81 .elementor-element:hover .elementor-image-box-title {
    color: #050748 !important;
}
.elementor-8 .elementor-element-71aad81 .elementor-element:hover .elementor-image-box-description {
    color: #050505 !important;
}

.elementor-element-71aad81 .elementor-element:hover .service-view-more a {
    display: inline-block;
    color: white !important;
    border: 1px solid white !important;
    padding: 0px 1vw;
} */


.elementor-widget-container strong {
    font-weight: 700 !important;
}


.elementor-element-4ca0e8aa a {
	color: black;
}


.elementor-8 .elementor-element.elementor-element-6c7d67a7 > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-74e7e84b > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-33cf4af8 > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-25192d6f > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-36999583 > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-7986d0dc > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-4975187 > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-6025d9b > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-54893ea > .elementor-widget-container:hover,
.elementor-8 .elementor-element.elementor-element-25dfe09 > .elementor-widget-container:hover {
    background-color: #ffffff;
}












/* -------------------------- */

.elementor-element-7ebb76f7 label {
    display: grid;
    width: 100%;
	color: black;
}

.elementor-element-7ebb76f7 input.wpcf7-form-control, .elementor-element-7ebb76f7 textarea.wpcf7-form-control {
    min-height: 40px;
    border: 2px solid #ccc;
    padding: 10px;
    width: 100%;
}
.elementor-element-7ebb76f7 .wpcf7-text:focus, .elementor-element-7ebb76f7 .wpcf7-textarea:focus {
    outline:none;
}

.elementor-element-7ebb76f7 input.wpcf7-form-control.wpcf7-submit {
	font-family: 'Poppins';
    width: fit-content;
    background: #AF191A;
    color: white;
    font-weight: bold;
    padding-inline: 20px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
.elementor-element-7ebb76f7 input.wpcf7-form-control.wpcf7-submit:hover {
    background: #5aa306;
}

/* --------------- */

.elementor-element-7ebb76f7 input.wpcf7-form-control.wpcf7-submit {
    background-color: #69727d;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 15px 30px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    background: #ffbd84;
    background: -moz-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: -webkit-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    -webkit-box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
}


























/*-------------------- blog ---------------------------*/
.blog {
    padding: 0 0 5%;
}

.blog >.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 30px;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1);
    box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1);
    transition: all .5s;
    border-radius: 5px;
}

.blog-wrapper:hover {
    -webkit-box-shadow: 0 5px 26px 0 rgba(10, 31, 68, 0.12);
    box-shadow: 0 5px 26px 0 rgba(10, 31, 68, 0.12);
}

.blog-wrapper > div:nth-child(2) {
    padding: 1.5rem 2.5rem 1rem;
    color: var(--p-color);
}

.blog-wrapper > div:nth-child(3) {
    padding: 0 2.5rem 1rem;
    line-height: 1.65;
    color: var(--black-color);
    font-weight: 500;
    height: 100%;
}

.blog-wrapper > div:nth-child(4) {
    padding: .5rem 2.5rem 2.5rem;
    margin-top: auto;
    width: 100%;
}

.blog-images img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.author img {
    border-radius: 50%;
    border: 2px solid #fff;
    height: 60px !important;
    -webkit-box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 10px 0 rgba(10, 31, 68, 0.1);
    box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 10px 0 rgba(10, 31, 68, 0.1);
}

.author-img {
    position: relative;
    display: grid;
    justify-items: end;
}

.author-img::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 90px;
    border-bottom: 2px solid #f2f2f2;
}
.author .date {
    color: var(--p-color);
}
.blog-wrapper .catagory-name a{
    color: var(--p-color)
}
.blog-wrapper .title a{
    color: var(--black-color);
}

/* 
=================================================================================
[ Pagination Section ]
====================================================================================
 */

.pagination-section {
	text-align: center;
	padding: 40px 0 20px;
}

.pagination-section ul li:not(:first-child):not(:last-child) {
	display: inline-grid;
	justify-items: center;
	margin: 0 5px
}

.pagination-section ul li.pag-prev {
	float: left;
}

.pagination-section ul li.pag-next {
	float: right;
}

.pagination-section ul li.pag-prev a,
.pagination-section ul li.pag-next a {
	border-bottom: 4px solid #ff671f;
	padding-bottom: 4px;
}

.pagination-section ul li a {
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
	display: block;
	text-decoration: none;
	-moz-transition: all 0.25s ease-out;
	-webkit-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.pagination-section ul li a:hover {
	color: #4c4c4c;
}

.pagination-section ul li a i {
	color: #231f20;
	font-size: 1.6rem;
	margin: 0 0.5rem;
}

.pagination-section ul li.active a {
	color: #4c4c4c;
}

/* 
------------------------ 
 Extra Pagination
------------------------
*/

.nav-links {
	text-align: center;
}

.nav-links a:not(:first-child):not(:last-child) {
	display: inline-grid;
	justify-items: center;
	margin: 0 5px
}

.nav-links .prev {
	float: left;
}

.nav-links .next {
	float: right;
}

.nav-links a.prev,
.nav-links a.next {
	border-bottom: 4px solid #ff671f;
	padding-bottom: 4px;
}

.nav-links a {
	font-size: 1.4rem;
	font-weight: 600;
	color: black;
	text-decoration: none;
	-moz-transition: all 0.25s ease-out;
	-webkit-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.nav-links a:hover {
	color: #4c4c4c;
}

.nav-links ul li a i {
	color: #231f20;
	font-size: 1.6rem;
	margin: 0 0.5rem;
}

.nav-links .current {
	color: #4c4c4c;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 5px;
}
/* 
------------------------------------
  others page title 
--------------------------------------
*/
section.others-page-title {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}
section.others-page-title > div:first-child {
  grid-area: 1 / 1 / 2 / -1;
}
section.others-page-title > div:last-child {
  grid-area: 1 / 1 / 2 / -1;
  z-index: 9;
}
.bgimage-wrapper {
  position: relative;
}
.bg-only-images {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
/*   filter: blur(1px); */
}
.bgimages-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: rgb(0 0 0 / 0.2);
}

.title-section-h1 {
  width: 100%;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 4vw 0;
}
.text-center {
  text-align: center;
}

