/* Fonts */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
}

body h1 {
	font-size: 72px;
	line-height: 85px;
	font-weight: 700;
}

body h1.h1-sm {
    color: #000;
	font-size: 64px;
	line-height: 75px;
	font-weight: 700;
}

body h2 {
    color: #000;
	font-size: 44px;
	line-height: 55px;
	font-weight: 700;
}

body h3 {
    color: #000;
	font-size: 32px;
	line-height: 42px;
	font-weight: 700;
}

body h4 {
    color: #000;
	font-size: 22px;
	line-height: 36px;
	font-weight: 700;
}

body p {
	color: #000;
	font-size: 20px;
	line-height: 30px;
}

body .text-xl {
	font-size: 28px;
	line-height: 38px;
}

body .text-lg {
	font-size: 24px;
	line-height: 34px;
}

body .text-sm {
	font-size: 16px;
	line-height: 26px;
}

body .text-xs {
	font-size: 14px;
	line-height: 24px;
}

body li {
    color: #000 !important;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-100 {
	margin-bottom: 100px;
}

.bg-grey {
	background: #F6F7FA;
	padding-top: 120px;
	padding-bottom: 120px;
}

.w-600 {
	max-width: 600px;
}

.underline-on-hover:not(:hover) {
	text-decoration: none;
}

.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.padding-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.padding-top-60 {
    padding-top: 60px;
}

.make-img-fill img {
	width: 100%;
}

.wp-block-columns {
	gap: 40px 80px !important;
}

.border-radius-48 {
    border-radius: 48px;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 992px) {
	body h1 {
		font-size: 32px;
		line-height: 40px;
	}
	
	body h1.h1-sm {
    	font-size: 24px;
    	line-height: 32px;
    }
	
	body h2 {
		font-size: 24px;
		line-height: 32px;
	}

	body h3 {
		font-size: 20px;
		line-height: 28px;
	}
	
	body h4 {
    	font-size: 20px;
    	line-height: 28px;
    }

	body p {
		font-size: 16px;
		line-height: 26px;
	}
	
	body .text-xl {
    	font-size: 16px;
    	line-height: 26px;
    }

	body .text-lg {
		font-size: 14px;
		line-height: 24px;
	}

	body .text-sm {
		font-size: 14px;
		line-height: 24px;
	}
    
	.mb-60 {
		margin-bottom: 40px;
	}
	
	.mb-80 {
	    margin-bottom: 40px;
    }

	.mb-100 {
		margin-bottom: 60px;
	}

	.bg-grey {
		background: #F6F7FA;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
	.margin-15-mb {
	    margin-left: 15px;
		margin-right: 15px;
	}
	
	.padding-100 {
	    padding-top: 60px;
	    padding-bottom: 60px;
    }
    
    .padding-40 {
	    padding-top: 20px;
	    padding-bottom: 20px;
    }
    
    .padding-top-60 {
        padding-top: 40px;
    }
    
    .border-radius-48 {
        border-radius: 16px;
    }
}

/**********/
/* Header */
/**********/

header {
    background: #ffffff;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

body.admin-user header {
    top: 32px;
}

header.transparent-header {
    background: transparent;
}

header.has-bottom-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header .site-name {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

header.transparent-header .site-name {
    color: #fff;
}

header .main-menu-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

header .main-menu-bar li {
    position: relative;
}

header .main-menu-bar li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
}

header.transparent-header .main-menu-bar li a {
    color: #fff;
}

header .main-menu-bar li a:hover {
    text-decoration: underline;
}

header .main-menu-bar li:last-child a {
    padding-right: 0;
}

header .main-menu-bar .current-menu-item {
    position: relative;
}

header .main-menu-bar .current-menu-item::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #000;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

header.transparent-header .main-menu-bar .current-menu-item::before {
    background: #fff;
}

header .mobile-menu-trigger {
    width: 18px;
    height: 18px;
	background-image: url('/wp-content/uploads/2025/07/mobile-menu-trigger-dark.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	display: none;
}

header.transparent-header .mobile-menu-trigger {
    background-image: url('/wp-content/uploads/2025/07/mobile-menu-trigger-light.png');
}

.mobile-menu-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    top: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1100;
    transition: all 0.4s ease;
    
    display: none;
    justify-content: flex-end;
}

.mobile-menu-wrapper .inner-ctn {
    width: 75%;
    height: 100%;
    background: #fff;
}

body.admin-user .mobile-menu-wrapper {
    height: calc(100vh - 46px);
    top: 46px;
}

.mobile-menu-wrapper .mobile-menu-close {
    width: 17px;
    height: 17px;
	background-image: url('/wp-content/uploads/2025/07/mobile-menu-close.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	float: right;
	margin: 20px;
}

.menu-mobile-menu-container {
    clear: both;
}

header .mobile-menu-bar {
    list-style-type: none;
    margin: 0;
    padding: 60px 40px;
}

header .mobile-menu-bar li {
    position: relative;
    margin-bottom: 15px;
}

header .mobile-menu-bar li:last-child {
    margin-bottom: 0;
}

header .mobile-menu-bar li a {
    display: block;
    width: 100%;
    padding: 10px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.scroll-disabled {
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    header {
        height: 72px;
    }
    
    body.admin-user header {
        top: 46px;
    }
    
    header .site-name {
        font-size: 20px;
    }

    .menu-main-menu-container {
        display: none;
    }

    header .mobile-menu-trigger {
        display: block;
    }

}

header .main-menu-bar li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100px;
    z-index: 999;
}

header .main-menu-bar li .sub-menu a {
    color: #000;
    padding: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
}

header .main-menu-bar li .sub-menu a:hover {
    color: #000;
}

header .main-menu-bar > li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

header .main-menu-bar .menu-item-has-children .sub-menu > .menu-item-has-children:hover > .sub-menu {
    display: block;
}

header .main-menu-bar li .sub-menu li .sub-menu {
    top: 0;
    left: 100%;;
}

header .mobile-menu-bar li .sub-menu {
    list-style-type: none;
}

/**********/
/* Footer */
/**********/

footer {
    margin: 100px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 100px;
    position: relative;
}

.custom-divider {
    width: calc(100% - 30px);
    height: 1px;
    border-top: 1px solid #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

footer .footer-item:nth-child(1) {
    width: calc(40% - 80px / 3);
}

footer .footer-item:nth-child(2) {
    width: calc(35% - 80px / 3);
}

footer .footer-item:nth-child(3) {
    width: calc(25% - 80px / 3);
}

/*
footer .footer-item>a {
    display: inline-block;
    color: #000;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
}


footer .footer-item>a:hover {
    text-decoration: underline;
}

footer .footer-item .link-phone {
    font-size: 18px;
    font-weight: 700;
}

footer .footer-item .link-email {
    text-decoration: underline;
}*/

footer .footer-item .social-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 992px) {
    
    footer {
        margin: 40px 0;
    }
    
    footer .container {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
    }
    
    footer .footer-item {
        width: 100% !important;
    }
    
}

/********/
/* Home */
/********/

.home-banner-sliders {
	height: 950px;
	overflow: hidden;
}

.home-banner-sliders .home-banner {
	height: 950px;
	overflow: hidden;
	display: flex !important;
	align-items: center;
}

.home-banner-sliders .home-banner {
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-banner-sliders .home-banner p {
	color: #fff;
	margin-bottom: 60px;
}

.custom-link-1 {
	color: #fff;
	background: #000;
	border-radius: 50px;
	width: 220px;
	height: 60px;
	font-size: 18px;
	line-height: 60px;
	font-weight: 600;
	transition: all 0.4s ease;
}

.custom-link-1:hover {
	color: #000;
	background: #fff;
	outline: 1px solid #000;
}

.custom-link-1.light {
	color: #000;
	background: #fff;
}

.custom-link-1.light:hover {
	color: #fff;
	background: #000;
}

@media only screen and (max-width: 992px) {
	.home-banner-sliders {
		height: 700px;
	}

	.home-banner-sliders .home-banner {
		height: 700px;
	}
	.home-banner-sliders .home-banner p {
		margin-bottom: 40px;
	}

	.home-banner-sliders .home-banner a {
		width: 195px;
		height: 50px;
		font-size: 14px;
		line-height: 50px;
	}
}

.grid-4-col {
	display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

.grid-4-col>div>img {
	width: 100%;
	height: auto;
}


@media only screen and (max-width: 992px) {
	.grid-4-col {
		display: grid;
		grid-template-columns: repeat(2, 1fr); 
		gap: 20px 15px;;
	}
}

.feature-flex-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;;
	gap: 30px;
}

.feature-flex-list>li {
	padding: 20px 40px 20px 20px;
	background: #fff;
	border-radius: 24px;
	width: calc(100% / 3 - 20px);
}

.feature-flex-list>li>.bg-arrow {
	width: 64px;
	height: 64px;
	background-image: url('/wp-content/uploads/2025/06/icon-arrow-right-solid.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 25px;
}

@media only screen and (max-width: 992px) {
	.feature-flex-list {
		gap: 20px;
	}

	.feature-flex-list>li {
		padding: 20px 15px;
		background: #fff;
		border-radius: 24px;
		width: 100%;
	}

	.feature-flex-list>li>.bg-arrow {
		margin-top: 20px;
	}
}


/*@media only screen and (max-width: 576px) {
	.home-banner-sliders .home-banner:nth-child(1) {
		background-image: url('/wp-content/uploads/2025/07/test-banner-1.webp') !important;
	}
}*/

/*********/
/* Pages */
/*********/

.page-banner-sec {
	height: 640px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
	.page-banner-sec {
		height: 380px;
		padding-bottom: 60px;
	}
}

.about-strength-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-strength-list li {
	margin-bottom: 30px;
	background: #F6F7FA;
	border-radius: 24px;
	padding: 23px 40px 23px 100px;
	position: relative;
}

.about-strength-list li:last-child {
	margin-bottom: 0;
}

.about-strength-list li::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
	background-image: url('/wp-content/uploads/2025/07/icon-circle.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
	.about-strength-list li {
		margin-bottom: 20px;
		border-radius: 12px;
		padding: 23px 20px 23px 65px;
		position: relative;
	}

	.about-strength-list li::before {
		width: 24px;
		height: 24px;
		left: 20px;
	}
}

.pf-bg-1 {
	min-height: 760px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2025/07/pf-bg-1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pf-bg-1>div {
	width: 100%;
}

@media only screen and (max-width: 781px) {
	.pf-bg-1 {
		min-height: 0;
		display: flex;
		align-items: flex-start;
		background-image: none;
		background-color: #E7E9F0;
	}
	
	.pf-bg-1 img {
		display: block !important;
		margin-left: -15px;
		width: calc(100% + 30px) !important;
	}
}




.aboutus-flex-timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 118px 0;
	display: flex;
	gap: 30px;
	position: relative;
}

.aboutus-flex-timeline li {
	width: calc(25% - 46px);
}

.aboutus-flex-timeline li img {
	width: 100%;
}

.aboutus-flex-timeline li h3,
.aboutus-flex-timeline li p {
	padding: 0 15px;
}


.aboutus-flex-timeline .as-bg {
	position: absolute;
	bottom: 0;
	left: -5px;
	max-width: calc(100% + 30px);
	height: 455px;
}

.aboutus-flex-timeline li:nth-child(1) {
	margin-top: 180px;
}

.aboutus-flex-timeline li:nth-child(2) {
	margin-top: 120px;
}

.aboutus-flex-timeline li:nth-child(3) {
	margin-top: 60px;
}

.aboutus-flex-timeline li:nth-child(4) {
	padding-top: 10px;
}

.show-on-mb {
	display: none;
}

@media only screen and (max-width: 992px) {
	
	.aboutus-flex-timeline {
		display: none;
	}
	
	.show-on-mb {
		display: grid;
	}
	
}

/*******/
/* CPT */
/*******/

.custom-empty-block {
    display: block;
    width: 100%;
    height: 100px;
}

@media only screen and (max-width: 1091px) {
    .custom-empty-block {
        height: 72px;
    }
}



/**/

.page-num-nav {
	display: flex;
	justify-content: center;
	gap: 10px 20px;
	flex-wrap: wrap;
	padding-top: 40px;
}

.page-num-nav a {
	color: #000;
	text-decoration: none;
}

.page-num-nav a:hover {
	text-decoration: underline;
}

.page-num-nav .current {
	background: #000;
	color: #fff;
	padding-left: 10px;
	padding-right: 10px;
}

@media only screen and (max-width: 992px) {
	.page-num-nav {
		padding-top: 0;
	}
}

.single-our-product-template .desc-ctn h3 {
	margin-bottom: 20px;
}

.single-our-product-template .desc-ctn p {
	margin-bottom: 40px;
}


