
/************************************/
/****     Global CSS 		    *****/
/************************************/

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internationalbg{
		background: var(--secondary-color);
}
.newglobalbg{
	background: #f8fbf2;
}
.section-text{
	text-align: justify;
}

.about-text-success{
	color: #5cb636ff;
}
:root {
	--primary-color			: #163300;
	--secondary-color		: #EFF1ED;
	--text-color			: #888888;
	--white-color			: #ffffff;
	--black-color			: #000000;
	/* --accent-color			: #89ea5f; */
	--accent-color			: #7bdb52;
	/* --accent-color			: #5cb636ff; */
	--white-divider			: #ffffff70;
	--divider-color			: #DADADA;
	--overlay-color			: rgba(22, 51, 0, 0.65);
	--error-color			: rgb(230, 87, 87);
	--accent-font			: 'Rajdhani', sans-serif;
	--default-font			: 'Rubik', sans-serif;
}

.btn-getin{
	background-color: #89EA5F;
	border-radius: 10px;
	border: none;
	    color: #060000;
}
.btn-getin:hover{
	background-color: #4b9017;
	color: white;
}
.widthadjust{
	width: 50%;
}

@media (max-width: 767.98px) {
	.widthadjust{
		width: 100%;
	}
}

/************************************/
/**** 	   General css		 ****/
/************************************/

body{
	font-size: 16px;
	font-weight: 400;
	font-family: var(--default-font);
	color: var(--text-color);
	line-height: 1.6em;
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
	color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--accent-font);
	margin-top:0;
	font-weight: 700;
	color: var(--primary-color);
}

figure{
	display: block;
	margin: 0;
	width: 100%;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	    color: #0072c3;
}

a:hover{
	text-decoration: none;
	outline: 0;
	
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.no-gap.row{
	margin-left: 0;
	margin-right: 0;
}

.no-gap.row > *{
	padding-left: 0;
	padding-right: 0;
}

.row.row-equal-height > [class*='col-']{
	display: flex;
	flex-direction: column;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
	padding-right: 15px;
	padding-left: 15px;
}

.btn-default{
	display: inline-block;
	background: var(--accent-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	border: 2px solid var(--accent-color);
	padding: 12px 30px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
}

.btn-default:after{
	background-color: var(--primary-color);
	border-radius: 30px;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-100%, 0) rotate(10deg);
	transform-origin: top left;
	transition: 0.2s transform ease-out;
	will-change: transform;
	z-index: -1;
}

.btn-default:hover::after{
	transform: translate(0, 0);
}

.btn-default:hover{
	color: var(--accent-color);
}

.btn-default.btn-border{
	background: none;
	color: var(--accent-color);
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index:1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 10px !important;
	height: 10px !important;
	background: var(--accent-color);
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}


.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-title{
	text-align: center;
	margin-bottom: 60px;
}

.section-title h3{
	display: inline-block;
	text-align: center;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--accent-color);
	position: relative;
	/* padding-left: 20px; */
	margin-bottom: 10px;
	z-index: 2;
}

/* .section-title h3:before{
	content: '';
	display: block;
	width: 12px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/lentologobg.svg) no-repeat left center;
	z-index: -1;
} */

@keyframes shapemove{
	50%{
		transform: translateX(10px);
	}
}

.section-title h1,
.section-title h2{
	font-size: 46px;
	color: var(--primary-color);
	letter-spacing: -0.5px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-description p:last-child{
	margin-bottom: 0;
}


/************************************/
/********* Translator CSS ***********/
/************************************/

/* Container for icons */
.topbar-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Style the social list and icon alignment */
.header-social-links .social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.header-social-links .social-list li a {
  color: #333;
  font-size: 16px;
}

/* Search icon style */
.topbar-search .search-toggle {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  padding: 4px;
  transition: color 0.3s ease;
}

.topbar-search .search-toggle:hover {
  color: #007bff; /* Hover color - change as needed */
}



/* Align the translator dropdown in the navbar */
.translator-nav {
	padding-left: 10px;
	padding-right: 10px;
}

/* Fix the dropdown's select box */
#google_translate_element select {
	color: #000 !important;
	border: 1px solid #093c25;
	background-color: #89EA5F;
	padding: 8px 10px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.4;
	height: auto;
	max-width: 180px;
}


/* Hide Google branding */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-simple img {
	display: none !important;
}

/* Reset Google Translate injected styles */
.goog-te-gadget {
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

/* Optional: fix dropdown z-index in case it's clipped */
#google_translate_element {
	z-index: 9999;
	position: relative;
}

/************************************/
/****************	 Header css	 ****/
/************************************/
/* Ensure the search box wrapper sits above the header */

.custom-dark-bg {
  background-color: rgb(33, 83, 11); 
  /* background-color: #343a40; */
}

.topbar-search-box {
  position: relative;
  z-index: 1101;
}

/* Suggestion list styling */
.search-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%; /* show just below the input */
  left: 0;
  width: 100%;
  background: #89EA5F;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 4px;
  display: none;
  z-index: 1102; /* keep it above header & everything else */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* optional, for cleaner look */
}

/* Each suggestion in a clean row */
.search-suggestions li {
  display: block;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  background-color: transparent;
  z-index: 1;
  white-space: nowrap; /* force single line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestions li:hover {
  background-color: #76d450;
}


.topbar{
	position: relative; 
	z-index: 1102;
	padding: 5px 0;
}

.topbar-contact-info{
	padding-left: 30px;
}

.topbar-contact-info ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.topbar-contact-info ul li{
	display: inline-block;
	margin-right: 20px;
	color: var(--white-color);
	font-size: 14px;
}

.topbar-contact-info ul li:last-child{
	margin-right: 0;
}

.topbar-contact-info ul li a{
	color: var(--white-color);
}

.topbar-contact-info ul li i{
	color: var(--accent-color);
	margin-right: 6px;
}
.brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #1c8f59, #84c441);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 13px;
  white-space: nowrap; /* Prevent text wrap */
  margin-right: 10px;
  height: 38px;
  line-height: 1;
}

.brochure-btn i {
  margin-left: 8px;
  font-size: 14px;
}

.brochure-btn:hover {
  background: linear-gradient(to right, #157b4b, #78b236);
}


.header-social-links{
	text-align: right;
	padding-right: 30px;
}

.header-social-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-social-links ul li{
	display: inline-block;
	margin-left: 4px;
}

.header-social-links ul li a{
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	font-size: 14px;
	background: var(--accent-color);
	color: var(--primary-color);
	transition: all 0.2s ease-in-out;
}

.header-social-links ul li a:hover{
	background: var(--primary-color);
	color: var(--accent-color);
}

header.main-header{
	position: relative;
	/* max-width: 1280px; */
	margin: 0 auto;
	/* background: var(--white-color); */
	background-color: #ffffff;
	/* border-radius: 30px; */
	border-bottom: 1px solid transparent;
	z-index: 100;
}

header.main-header .header-sticky{
	padding: 10px 0px;
	position: relative;
	top: 0;
	z-index: 100;	
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	padding: 10px 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
    transform: translateY(0);
	background: var(--white-color);
}

.navbar{
	padding: 0;
}

.navbar-brand{
	padding: 0;
}

.main-menu{
	font-family: var(--default-font);
	justify-content: flex-end;
}

.main-menu ul{
	align-items: center;
}

.main-menu ul li{
	margin: 0 15px;
	position: relative;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul ul li.submenu > a{
	position: relative;
}

.main-menu ul ul li.submenu > a:after{
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 6px;
	transform: rotate(-90deg);
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 400;
	padding: 12px 10px !important;
	color: var(--primary-color);
}

.main-menu ul li.highlighted-menu a{
	display: block;
	background: var(--accent-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	border: 2px solid var(--accent-color);
	padding: 10px 30px !important;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
}

.main-menu ul li.highlighted-menu a:after{
	background-color: var(--primary-color);
	border-radius: 30px;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-100%, 0) rotate(10deg);
	transform-origin: top left;
	transition: 0.2s transform ease-out;
	will-change: transform;
	z-index: -1;
}

.main-menu ul li.highlighted-menu a:hover::after{
	transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover{
	color: var(--accent-color);
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 270px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	padding: 6px 20px !important;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover{
	color: var(--white-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 100%;
	position: absolute;
	left: 0;
	right: 0;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	margin: 4px auto !important;
}

.slicknav_menu{
	padding: 0;
	background: var(--accent-color);
	border-radius: 20px;
	max-height: 80vh;
	overflow: auto;
}

.slicknav_nav{
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	font-size: 16px;
	font-weight: 400;
	padding: 10px 15px;
	font-family: var(--default-font);
	color: var(--primary-color);
	line-height: normal;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	float: right;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav li.slicknav_open > a .slicknav_arrow:after{
	transform: rotate(-90deg);
}



/************************************/
/**** 	    Right Side Dropdown	 ****/
/************************************/

/* Right side submenu */
.main-menu ul li.submenu > ul.submenu-right {
  left: 100%;
  top: 0;
  margin-left: 5px;
  border-radius: 15px;
  background-color: var(--accent-color);
  min-width: 200px;
}

/* Ensure submenu opens to right on hover */
.main-menu ul li.submenu:hover > ul.submenu-right {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}



/************************************/
/*********** 	Contact css		 ****/
/************************************/

.contact-block {
  transition: background-color 0.3s ease;
  border-radius: 8px;
  padding: 15px;
}

.contact-block:hover {
  background-color: #89EA5F;
}


/************************************/
/*********** 	   Job css		 ****/
/************************************/

    .job-container {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      margin-top: 30px;
    }
    .job-title {
      color: #004085;
    }
    .apply-btn {
      background-color: #007bff;
      color: white;
    }
    .job-details {
      max-height: 400px;
      overflow-y: auto;
      white-space: pre-wrap;
    }



/***********************************/
/******* Certificate Section *******/
/***********************************/

.certificates-section {
  background-color: #f8fbf2;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.certificates-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.certificates-slider::-webkit-scrollbar {
  height: 6px;
}

.certificates-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.cert-item {
  min-width: 220px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.cert-item:hover {
  transform: scale(1.05);
}

.cert-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 4px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


/***********************************/
/************ Ethos Section ********/
/***********************************/

.ethos-section {
  background-color: #fff;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.ethos-image {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ethos-content {
  padding-left: 20px;
}

.ethos-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003087;
  margin-bottom: 5px;
  font-family: Georgia, sans-serif;
}

.ethos-subheading {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

.ethos-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ethos-item {
  display: flex;
  align-items: flex-start;
  border-left: 3px solid #003087;
  padding-left: 15px;
  transition: background 0.3s ease;
}

.ethos-item:hover {
  background-color: #f0f4ff;
  border-left-color: #0056b3;
  border-radius: 4px;
}

.ethos-letter {
  background: #e6ecff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #003087;
  margin-right: 15px;
  flex-shrink: 0;
}

.ethos-description {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.ethos-inline {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

.ethos-inline strong {
  font-weight: 600;
  color: #111;
  margin-right: 6px;
  display: inline;
}

@media (max-width: 767.98px) {
  .ethos-image {
    height: auto;
    margin-bottom: 20px;
  }
}

/*********** Mobile Top BAr   */

@media (max-width: 767px) {
  /* Hide unwanted items */
  .contact-email,
  .contact-phone-secondary,
  .topbar-search-box {
    display: none !important;
  }

  /* Parent .row should act as a horizontal flexbox */
  .topbar .row {
    display: flex !important;
    /* flex-wrap: nowrap; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 10px;
    overflow: hidden;
  }

  /* Prevent full-width columns */
  .topbar .col-md-8,
  .topbar .col-md-4 {
    flex: 1 1 auto;
    width: auto !important;
    /* max-width: 100%; */
    max-width: max-content;
    padding: 0;
  }

  /* Make contact + brochure container flex */
  .topbar-contact-info ul {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* Contact number style */
  .contact-phone-primary a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
  }

  /* Brochure button styling */
  .brochure-btn {
    background: linear-gradient(to right, #00c853, #64dd17);
    color: #000;
    font-weight: bold;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
  }

  .brochure-btn i {
    margin-left: 5px;
  }

  /* Make brochure button container inline */
  .header-social-links {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }
}



/************************************/
/**** 	    	 Hero css		 ****/
/************************************/

.carousel-image {
  height: 575px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero{
	position: relative;
	background: url(../images/banner.png) no-repeat center center;
	background-size: cover;
	height: 570px;
	width: 100%;
	/* padding: 310px 0 140px; */
	margin-top: -162px;
	overflow: hidden;
}

.hero:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(90deg, rgba(22, 51, 0, 0.65) 0%, rgba(22, 51, 0, 0.00) 100%); */
	z-index: 1;
}

/* ✅ Mobile view image override */
@media (max-width: 767px) {
  .hero {
    background: url(../images/bannermobile.png) no-repeat center center;
    background-size: cover;
    height: 500px; /* you can adjust this as needed */
    margin-top: 0;
  }
}

.hero-content{
	position: relative;
	z-index: 1;
}

.hero-content .section-title{
	text-align: left;
	margin-bottom: 30px;
}

.hero-content .section-title h1{
	font-size: 70px;
	color: var(--white-color);
}

.hero-content-body p{
	color: var(--white-color);
	font-size: 18px;
}

.hero-content-body .btn-default{
	margin-top: 10px;
}

.hero-content-footer{
	margin-top: 60px;
}

.hero-content-footer .btn-default{
	margin-right: 20px;
}

.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-section .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider,
.hero-layout2.hero-slider,
.hero-layout3.hero-slider{
	background: none;
	padding: 0;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide{
	position: relative;
    padding: 310px 80px 140px;
}

.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide{
	padding: 310px 0 140px;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(22, 51, 0, 0.65) 0%, rgba(22, 51, 0, 0.00) 100%);
    z-index: 1;
}

.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black-color);
	opacity: 0.55;
	z-index: 1;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-slider-image,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image img,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-slider-image img,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-content,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-content,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-content{
	position: relative;
	z-index: 2;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
.hero.hero-slider .hero-slider-layout1 .hero-button-next,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev{
	left: 20px;
	background-image: url(../images/icon-left.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-next,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next{
	right: 20px;
	background-image: url(../images/icon-right.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev:hover,
.hero.hero-slider .hero-slider-layout1 .hero-button-next:hover,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev:hover,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next:hover{
	background-color: var(--primary-color);
}

.hero-layout2{
	position: relative;
	background: url(../images/hero-2.jpg) no-repeat top center;
	background-size: cover;
	padding: 310px 0 140px;
	margin-top: -162px;
	overflow: hidden;
}

.hero-layout2:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black-color);
	opacity: 0.55;
	z-index: 1;
}

.hero-layout2-box{
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-layout2-box .section-title{
	margin-bottom: 20px;
}

.hero-layout2-box .section-title h1{
	color: var(--white-color);
	font-size: 70px;
}

.hero-layout2-box .hero-content p{
	color: var(--white-color);
	font-size: 18px;
}

.hero-layout2-box .hero-button{
	margin-top: 40px;
}

.hero-layout2-box .hero-button .btn-default{
	margin: 0 10px;
}

.hero-layout2-box .hero-button .btn-default.btn-border{
	border-color: var(--white-color);
	color: var(--white-color);
}

.hero-layout3{
	position: relative;
	background: url(../images/hero-3.jpg) no-repeat top center;
	background-size: cover;
	padding: 310px 0 140px;
	margin-top: -162px;
	overflow: hidden;
}

.hero-layout3:before,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black-color);
	opacity: 0.5;
	z-index: 1;
}

.hero-layout3.hero-slider:before{
	display: none;
}

.hero-layout3 .hero-content,
.hero-layout3 .hero-image{
	position: relative;
	z-index: 1;
}

.hero-layout3 .hero-body{
	max-width: 616px;
}

.hero-layout3 .hero-body p{
	color: var(--white-color);
}

.hero-layout3 .hero-button{
	margin-top: 30px;
}

.hero-layout3 .hero-image{
	text-align: right;
}

.hero-layout3 .hero-image figure{
	display: inline-block;
	border-radius: 50%;
	width: auto;
	border: 2px solid var(--white-divider);
	padding: 10px;
	max-width: 384px;
	aspect-ratio: 1/1;
	position: relative;
}

.hero-layout3 .hero-image figure img{
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
}

.hero-layout3 .hero-image-box{
	display: inline-block;
	position: relative;
}

.hero-layout3 .hero-image .rotate-circle{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	border-radius: 50%;
	animation: spinner 6s linear infinite;
}

.hero-layout3 .hero-image .rotate-circle::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	display: flex;
	height: 14px;
	width: 14px;
	border-radius: 50%;
	margin-top: -6px;
	margin-left: -6px;
	background-color: var(--accent-color);
}

@keyframes spinner {
	to {
	  transform: rotate(360deg);
	}
}

.hero-slider-layout3 .swiper-pagination{
	bottom: 40px;
}

.hero-slider-layout3 .swiper-pagination-bullet{
	width: 14px;
	height: 14px;
	opacity: 1;
	background: var(--white-color);
}

.hero-slider-layout3 .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/******************************************/
/****   . About us css   	   ****/
/******************************************/

.about-us{
	padding: 50px 0;
}

.about-us .section-title{
	text-align: left;
	margin-bottom: 30px;
}

.about-content ul{
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

.about-content ul li{
	width: 48%;
	margin-right: 2%;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	font-weight: 500;
	    color: #000000;
	/*color: var(--primary-color);*/
}

.about-content ul li:before{
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
}

.about-image{
	position: relative;
	background: url(../images/about-right-shape.svg) no-repeat top 30px right 6%;
	background-size: 18% auto;
	padding-bottom: 100px;
	margin-right: 20px;
}

.about-img-1{
	display: inline-block;
	width: 75%;
	border-radius: 30px;
	overflow: hidden;
	line-height: 0;
}

.about-img-2{
	width: 50%;
	border-radius: 30px;
	overflow: hidden;
	line-height: 0;
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	border: 6px solid var(--white-color);
}

.about-image-slider{
	position: relative;
	margin-right: 20px;
}

.about-layout2{
	padding: 50px 0 100px;
}

.about-carousel{
	border-radius: 30px;
	overflow: hidden;
}

.about-layout2 .about-image{
	margin: 0;
	padding: 0;
}

.about-image img{
	width: 100%;
}

.about-carousel .about-button-prev,
.about-carousel .about-button-next{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.about-carousel .about-button-prev:hover,
.about-carousel .about-button-next:hover{
	background-color: var(--primary-color);
}

.about-carousel .about-button-prev{
	left: 30px;
	background-image: url(../images/icon-left.svg);
}

.about-carousel .about-button-next{
	right: 30px;
	background-image: url(../images/icon-right.svg);
}

.about-layout2-overlay-content{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	background: var(--white-color);
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}

.about-overaly-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
}

.about-overaly-item.about-overaly-item-active{
	background: var(--secondary-color);
}

.about-overaly-item .icon-box{
	width: 60px;
	height: 60px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 20px;
}

.about-overaly-item h3{
	width: calc(100% - 80px);
	margin: 0;
	font-size: 20px;
}

.about-layout2-content{
	margin-left: 20px;
}

.about-layout2-content .section-title{
	text-align: left;
	margin-bottom: 30px;
}

.about-layout2-content .about-stats{
	margin-top: 30px;
	margin-bottom: 40px;
}

.about-layout2-content .about-stats-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about-layout2-content .about-stats-item .icon-box{
	width: 60px;
	height: 60px;
	margin-right: 20px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

.about-layout2-content .about-stats-item .about-stats-content{
	width: calc(100% - 80px);
}

.about-layout2-content .about-stats-item .about-stats-content h3{
	margin-bottom: 0;
	font-size: 28px;
	font-weight: 700;
	font-family: var(--default-font);
}

.about-layout2-content .about-stats-item .about-stats-content p{
	margin: 0;
}

.about-layout3{
	padding: 100px 0;
}

.about-layout3 .section-title{
	text-align: left;
	margin-bottom: 0;
}

.about-layout3-features{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.about-layout3-features ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.about-layout3-features ul li{
	font-size: 22px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--primary-color);
	position: relative;
	padding: 6px 0 6px 50px;
	margin-right: 60px;
}

.about-layout3-features ul li:before{
	content: '';
	display: block;
	background: var(--accent-color) url(../images/icon-checkmark.svg) no-repeat center center;
	background-size: 14px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
}

.about-layout3-features ul li:last-child{
	margin-right: 0;
}

.about-layout3 .about-img-video{
	position: relative;
	margin-top: 60px;
	border-radius: 30px;
	overflow: hidden;
}

.about-layout3 .about-img-video .about-layout3-image img{
	transition: all 0.5s ease-out;
}

.about-layout3 .about-img-video:hover .about-layout3-image img{
	transform: scale(1.2);
}

/******************************************/
/****  	  06. Our Services css		   ****/
/******************************************/

.custom-servicebg{
	background-color: rgb(239, 241, 237);
	padding-top: 20px;
}

/* Our Services Section */
.our-services {
	padding: 100px 0;
	background: var(--secondary-color);
}

.service-item {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	background-color: var(--white-color);
}

.service-item a.service-box-link {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
	z-index: 4;
}

/* Hover effect for images */
.service-item .service-image figure img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.service-item:hover .service-image figure img {
	transform: scale(1.2);
}

/* Icon Style */
.service-image .service-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	z-index: 2;
}

/* Service Content */
.service-item .service-content {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0px;
	background: rgb(254, 255, 252);
	border-radius: 30px;
	padding: 20px;
	z-index: 2;
	transition: all 0.2s ease-out;
}

/* Hover effect for content */
.service-item:hover .service-content {
	bottom: 10px;
}

/* Title Style */
.service-item .service-content h3 {
	font-size: 22px;
}

/* Short description style (first 5 words) */
.service-item .service-content .short-description {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 10px;
}

/* Full description (initially hidden) */
.service-item .service-content .full-description {
	display: none;
	font-size: 16px;
	color: #333;
	margin-top: 10px;
}

/* On hover, show full description and hide short description */
.service-item:hover .service-content .short-description {
	display: none;
}

.service-item:hover .service-content .full-description {
	display: block;
}

/* Pagination for Services Slider */
.services-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.services-slider .swiper-pagination .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.services-slider .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

/* Services Layout 2 - Basic Structure */
.services-layout2 {
	padding: 100px 0;
	background: var(--secondary-color);
}

.services-layout2-slide {
	background: var(--white-color);
	border-radius: 30px;
	overflow: hidden;
}

.services-layout2-slide .service-image {
	-webkit-mask-image: url(../images/service-mask-img.svg);
	-webkit-mask-size: cover;
	mask-image: url(../images/service-mask-img.svg);
	mask-size: cover;
	mask-position: center center;
}

.services-layout2-slide .service-image figure img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.services-layout2-slide:hover .service-image figure img {
	transform: scale(1.2);
}

.services-layout2-slide .service-content {
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
}

.services-layout2-slide .service-content .service-info {
	width: calc(100% - 80px);
}

.services-layout2-slide .service-content .icon-box {
	width: 60px;
	margin-left: 20px;
}

.services-layout2-slide .service-content .icon-box a {
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.services-layout2-slide .service-content .icon-box a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 20px;
	transform: translate(-100%, 100%);
	transition: all 0.3s ease-out;
}

.services-layout2-slide:hover .service-content .icon-box a::before {
	transform: translate(0);
}

/* Hover effect for Services Layout 2 */
.services-layout2-slide:hover .service-image figure::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

/* Final Pagination */
.services-layout2-slider .swiper-pagination .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	background: var(--white-color);
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.services-layout2-slider .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}


/******************************************/
/****   	New Product Slider css 	   ****/
/******************************************/

.newproduct-item {
  background-color: #f5f7fa;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.newproduct-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.newproduct-item p {
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 10px;
  height: 75px;
  overflow: hidden;
}

.newproduct-item img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
  margin: 10px auto;
}

.newproduct-item a {
  font-size: 13px;
  color: #0056d2;
  text-decoration: none;
  margin-top: auto;
}



/******************************************/
/****   	Global Reach Video css 	   ****/
/******************************************/

.intro-video{
	padding: 50px 0;
}

.intro-video-box{
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}

.intro-video-box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: var(--overlay-color);*/
	z-index: 1;
}

.intro-video-box .video-image img{
	transition: all 0.5s ease-in-out;
	width: 100vw;
	height: 600px;
	background-position: cover;
}

.intro-video-box:hover .video-image img{
	transform: scale(1.2);
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.video-play-button a{
	display: inline-block;
	position: relative;
	font-size: 80px;
	height: 80px;
    border-radius: 50%;
    text-align: center;
}

.video-play-button a img{
	width: 80px;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}
@media only screen and (max-width: 991px){
	.video-image img{
		height: 400px;
		object-fit: cover;
	}
}

/******************************************/
/****   	Research Bar CTA css   	   ****/
/******************************************/

.infobar{
	padding: 50px 0 100px;
}

.cta-box{
	background-color: var(--secondary-color);
	border-radius: 30px;
	overflow: hidden;
}

.cta-box .cta-image img{
	width: 100%;
}

.cta-content{
	position: relative;
	padding: 0 60px;
}

.cta-content .phone-icon{
	width: 90px;
	height: 90px;
	position: relative;
	border-radius: 50px;
	border: 6px solid var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	position: absolute;
	left: 0;
	top: 50%;
	overflow: hidden;
	transform: translate(-70px,-50%);
}

.cta-content .phone-icon:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 50%;
	transform: translate(-100%,100%);
	transition: all 0.3s ease-out;
}

.cta-box:hover .cta-content .phone-icon:before{
	transform: translate(0);
}

.cta-content .phone-icon figure{
	text-align: center;
}

.cta-content .phone-icon figure img{
	position: relative;
	z-index: 1;
}

.cta-content h3{
	font-size: 40px;
	color: var(--primary-color);
}

.cta-content h3 span{
	color: var(--accent-color);
}

.cta-content p{
	margin-bottom: 0;
	    color: #000000;
}

/******************************************/
/****   	 Why Choose Us css  	   ****/
/******************************************/

.why-choose-us{
	padding: 100px 0;
	background: var(--secondary-color);
}

.why-choose-item{
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	padding: 25px;
	height: 100%;
}

.why-choose-item:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	z-index: 3;
	border-radius: 30px;
	transition: all 0.3s ease-out;
}

.why-choose-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 36px;
    overflow: hidden;
	transition: all 0.1s ease-out;
}

.why-choose-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--overlay-color);
}

.why-choose-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.why-choose-content{
	position: relative;
	z-index: 4;
}

.why-choose-content .why-choose-icon{
	margin-bottom: 20px;
}

.why-choose-content .why-choose-icon img{
	max-height: 60px;
}

.why-choose-content h3{
	font-size: 22px;
	transition: all 0.3s ease-out;
}

.why-choose-content p{
	margin-bottom: 0;
	transition: all 0.3s ease-out;
}

.why-choose-item:hover:before{
	transform: translate(100%,-100%);
}

.why-choose-item:hover .why-choose-image{
	opacity: 1;
}

.why-choose-item:hover .why-choose-content h3,
.why-choose-item:hover .why-choose-content p{
	color: var(--white-color);
}

.why-chooseus-layout2 .container-fluid{
	padding-left: 0;
	padding-right: 0;
}

.why-chooseus-layout2 .why-choose-us-img-box{
	position: relative;
	background: url(../images/whyus-left-img.jpg) no-repeat center center;
	background-size: cover;
	padding: 100px 15px;
	height: 100%;
	min-height: 300px;
}

.why-choose-us-layout2-content{
	padding: 100px;
}

.why-choose-us-layout2-content .section-title{
	text-align: left;
	margin-bottom: 20px;
}

.why-choose-us-layout2-content .why-choose-us-body{
	margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item:last-child{
	margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .icon-box{
	width: 60px;
	height: 60px;
	border-radius: 20px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc{
	width: calc(100% - 80px);
}

.why-choose-us-layout2-features .why-features-item .why-features-desc h3{
	font-size: 22px;
	margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc p{
	margin: 0;
}

.why-choose-us-layout3{
	padding: 100px 0;
	background: var(--secondary-color);
}

.why-choose-item3{
	background: var(--white-color);
	text-align: center;
	padding: 40px 30px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.why-choose-item3:before{
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item3 .icon-box{
	width: 80px;
	height: 80px;
	margin: 0 auto 30px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	position: relative;
	z-index: 1;
}

.why-choose-item3 h3{
	font-size: 22px;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item3 p{
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item3:hover:before{
	top: 0;
	left: 0;
}

.why-choose-item3:hover h3,
.why-choose-item3:hover p{
	color: var(--white-color);
}

/******************************************/
/****   Spacification Counter css  	   ****/
/******************************************/

.stat-counter{
	padding: 60px 0;
	background: var(--primary-color);
}

.counter-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.counter-item .counter-icon{
	width: 80px;
	height: 80px;
	border-radius: 30px;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.counter-content{
	width: calc(100% - 110px);
}

.counter-content h3{
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 0;
}

.counter-content p{
	margin-bottom: 0;
	color: var(--accent-color);
}

.company-overview{
	padding: 100px 0 70px;
}

.company-overview .section-title{
	text-align: left;
	margin-bottom: 20px;
}

.overview-counter-box{
	margin-left: 80px;
}

.overview-counter-box .overview-counter-item{
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
}

.overview-counter-box .overview-counter-item .icon-box{
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	margin-right: 20px;
}

.overview-counter-box .overview-counter-item .overview-counter-content{
	width: calc(100% - 100px);
}

.overview-counter-box .overview-counter-item .overview-counter-content h3{
	font-size: 40px;
	margin: 0;
}

.overview-counter-box .overview-counter-item .overview-counter-content p{
	margin: 0;
}


/******************************************/
/****    	Latest Blog Section css   ****/
/******************************************/
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    object-fit: cover;
    width: 100%;
    height: 400px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.card-body {
        padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
    
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    
}

.card-text {
        font-size: 14px;
    color: #000000;
}

.list-group-item {
    font-size: 14px;
    color: #777;
}

.card-link {
    color: #007bff;
    text-decoration: none;
}

.card-link:hover {
    color: #0056b3;
}

/* General Styling for Latest News Section */
.latest-blog {
    padding: 50px 0;
}

/* Blog Item Styling */
.blog-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    flex-direction: column; 
}

.blog-item .post-featured-image {
    margin-bottom: 0;
    position: relative;
    flex-shrink: 0;
}

.blog-item .post-featured-image a {
    position: relative;
    z-index: 1;
}

.blog-item .post-featured-image img {
    aspect-ratio: 16 / 9; 
    object-fit: cover; 
    object-position: center center; 
    transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img {
    transform: scale(1.2); /* Zoom effect on hover */
}

.blog-item .post-item-body {
    padding: 20px; 
    background-color: var(--white-color);
    z-index: 4;
    border-radius: 0;
    display: flex;
    flex-direction: column; 
    flex-grow: 1;
}

.blog-item .post-item-body h2 {
        color: #030600;
    font-size: 20px;
}

.blog-item .post-item-body h2 a {
    color: inherit;
    transition: all 0.3s ease-out;
}

.blog-item .post-item-body h2 a:hover {
    color: var(--accent-color);
}

.blog-item .post-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-item .post-meta ul li {
    font-size: 14px;
    color: var(--text-color);
}

.blog-item .btn-readmore {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.blog-item:hover .btn-readmore {
    height: 50px;
}

.blog-item .btn-default {
    padding: 6px 20px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.blog-item:hover .btn-default {
    background-color: var(--accent-color);
}

/* Hover effect for images with Slight zoom effect  */
.blog-item:hover .post-featured-image img {
    transform: scale(1.05); 
}

/* Related Posts Section */
.related-posts {
    padding: 50px 0;
}

/* Latest Posts Layout */
.latest-post-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

/* Post Item 2 Specific */
.post-item2 {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack content vertically */
}



/******************************************/
/****   	  Catalog Pdfs css 	       ****/
/******************************************/

section.py-4 {
  background-color: rgb(239, 241, 237);
  padding: 2rem 0; /* thoda vertical padding for better look */
}

.catalog-item {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.catalog-item:hover {
  background-color: #76d450;
  color: white;
}

.catalog-item:hover a {
  color: white;
  text-decoration: underline;
}

/* Existing hover effect for icon scaling */
.catalog-item i {
  transition: transform 0.3s ease;
}

.catalog-item:hover i {
  transform: scale(1.1);
}


/******************************************/
/****   	  Get in Touch css 	       ****/
/******************************************/

.get-in-touch-section {
  background-color: #f8fbf2;
}

.form-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}

.form-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  /* background-color: #e4e4e4; */
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}



/******************************************/
/****   	   Features css  	   ****/
/******************************************/

.features-layout2{
	padding: 100px 0 50px;
}

.features-layout2-box{
	background: var(--secondary-color);
	border-radius: 30px;
	overflow: hidden;
}

.features-item2{
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.features-item2:before{
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	z-index: 1;
	opacity: 0;
	border-radius: 30px;
	transition: all 0.3s ease-out;
}

.features-item2 .features-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.features-item2 .features-header .icon-box{
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.features-item2 .features-header h3{
	width: calc(100% - 100px);
	margin: 0;
	font-size: 26px;
	transition: all 0.2s ease-out;
}

.features-item2 .features-desc p{
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease-out;
}

.features-item2.features-active{
	background: var(--accent-color);
}

.features-item2.features-active .features-header .icon-box{
	background: var(--white-color);
}

.features-item2.features-active .features-header h3,
.features-item2.features-active .features-desc p{
	color: var(--white-color);
}

.features-item2:hover:before{
	top: 0;
	border-radius: 0;
	opacity: 1;
}

.features-item2:hover .features-header h3,
.features-item2:hover .features-desc p{
	color: var(--white-color);
}


/******************************************/
/****  	Event Gallery PAge css  	   ****/
/******************************************/
 .event-gallery {
      padding: 80px 20px;
	background-color: rgb(241, 244, 239);
    }

    /* Category Filter Bar */
    .category-bar {
      display: flex;
      justify-content: center;
      margin-bottom: 50px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .category-bar button {
      border-radius: 50px;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      background-color: #f1f1f1;
      color: #333;
      transition: all 0.3s ease;
    }

    .category-bar .btn-dark {
      color: #fff;
    }

    .category-bar button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    /* Event Card Styles */
    .event-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .event-image-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 12px;
      height: 250px;
    }

    .event-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .event-card:hover .event-image {
      transform: scale(1.1);
    }

    .event-hover-effect {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: 700;
      font-size: 20px;
      text-align: center;
      padding: 20px;
      letter-spacing: 1px;
    }

    .event-card:hover .event-hover-effect {
      opacity: 1;
    }

    /* Card Grid Layout */
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .event-gallery {
        padding: 60px 10px;
      }

      .category-bar button {
        font-size: 14px;
        padding: 10px 20px;
      }
    }

.upcoming-event {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 50px;
    /* background-color: #f4f4f4; */
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-header {
    text-align: center;
    margin-bottom: 30px;
}

.event-header h2 {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 10px;
}

.event-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.commitment {
    font-style: italic;
    font-weight: bold;
    margin-top: 20px;
}

.event-details {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-details h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Table Styles */
.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-table th, .event-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

.event-table th {
    background-color: #28a745;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-table td {
    background-color: #fafafa;
    color: #555;
}

.event-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.event-table tr:hover {
    background-color: #e2f7e2;
    transition: background-color 0.3s ease;
}

.event-table th, .event-table td {
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 1024px) {
    .event-table th, .event-table td {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .event-table th, .event-table td {
        padding: 12px;
    }

    .event-table {
        font-size: 14px;
    }

    .event-details h3 {
        font-size: 24px;
    }

    .event-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .upcoming-event {
        padding: 30px 15px;
    }

    .event-header h2 {
        font-size: 28px;
    }

    .event-table th, .event-table td {
        font-size: 12px;
        padding: 10px;
    }

    .event-header p {
        font-size: 14px;
    }

    .event-details h3 {
        font-size: 20px;
    }
}


/******************************************/
/****  	Marquee Footer Ticker css  	   ****/
/******************************************/

.footer-ticker{
	padding: 20px 0 10px;
}

.scrolling-ticker-box{
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span{
	display: inline-flex;
	align-items: center;
	font-family: var(--accent-font);
	text-transform: uppercase;
	font-size: 100px;
	line-height: 1.1em;
	font-weight: 600;
	color: transparent;
	-webkit-text-stroke-width: 1px;
    stroke-width: 1px;
	font-weight: 700;
    -webkit-text-stroke-color: var(--accent-color);
    stroke: var(--accent-color);
}

.scrolling-content span:after{
	content: '/';
	margin-left: 30px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/******************************************/
/****   		Our Footer css  	   ****/
/******************************************/

footer.main-footer{
	padding: 0 0 60px;
	background: var(--primary-color) url(../images/footer-bg.svg) no-repeat bottom center;
	background-size: cover;
}

.footer-contact{
	border-bottom: 1px solid #ffffff20;
	margin-bottom: 80px;
	padding: 30px 0;
}

.footer-contact-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-contact-box .contact-icon-box{
	width: 80px;
	height: 80px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	margin-right: 30px;
}

.footer-contact-info{
	width: calc(100% - 110px);
}

.footer-contact-info h3{
	color: var(--white-color);
	font-size: 22px;
}

.footer-contact-info p{
	margin-bottom: 0;
	color: var(--white-color);
}

.footer-about figure{
	margin-bottom: 30px;
}

.footer-about p{
	color: var(--white-color);
}

.footer-social-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li a{
	color: var(--accent-color);
}

.footer-links{
	padding-left: 80px;
}

.footer-links h2{
	color: var(--white-color);
	font-size: 22px;
	position: relative;
	margin-bottom: 30px;
}

.footer-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li{
	position: relative;
	margin-bottom: 10px;
}

.footer-links ul li a{
	display: block;
	padding-left: 16px;
	color: var(--white-color);
}

.footer-links ul li a:before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-color);
	transform: translate(0,-50%);
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-copyright{
	background: var(--accent-color);
	padding: 30px;
	border-radius: 30px;
	margin-top: 60px;
}

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

.footer-copyright-text p{
	margin-bottom: 0;
	font-size: 18px;
	color: var(--primary-color);
}

/******************************************/
/********   Blog Archive page css 	   ****/
/******************************************/

.page-blog-archive{
	padding: 100px 0 50px;
	background-color: #EFF1ED;
}

.page-blog-archive .blog-item{
	margin-bottom: 30px;
}

.post-pagination{
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul{
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	margin: 0 4px;
	border-radius: 10px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--primary-color);
	transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover{
	background: var(--accent-color);
	color: var(--white-color);
}

/******************************************/
/*******   Post Single page css 	   ****/
/******************************************/

.post-single-meta ul{
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.post-single-meta ul li{
	display: inline-block;
	position: relative;
	color: var(--white-color);
}

.post-single-meta ul li:after{
	content: '/';
	margin: 0 10px 0 14px;
}

.post-single-meta ul li:last-child:after{
	display: none;
}

.page-single-post{
	padding: 100px 0 50px;
}

.post-featured-image{
	max-width: 1180px;
	margin: 0 auto 40px;
	border-radius: 30px;
	overflow: hidden;
}

.post-content{
	max-width: 1060px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid #dbeed8;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 1em 0 0.7em;
}

.post-entry h1{
	font-size: 36px;
}

.post-entry h2{
	font-size: 30px;
}

.post-entry h3{
	font-size: 26px;
}

.post-entry h4{
	font-size: 22px;
}

.post-entry h5{
	font-size: 18px;
}

.post-entry h6{
	font-size: 16px;
}

.post-entry ul{
	padding: 0;
	margin: 0 0 1.7em;
	list-style: none;
}

.post-entry ul li{
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--primary-color);
}

.post-entry ul li:before{
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
}

.post-entry blockquote{
	background: var(--primary-color) url(../images/icon-blockquote.svg) no-repeat right bottom;
	text-align: center;
	border-radius: 30px;
	padding: 30px 80px;
}

.post-entry blockquote p{
	font-size: 40px;
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1.2em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.post-tags{
	font-size: 30px;
	font-family: var(--accent-font);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	font-weight: 700;
	vertical-align: middle;
}

.post-tags a{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--default-font);
	padding: 8px 24px;
	border: 2px solid var(--accent-color);
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 30px;
	margin-left: 10px;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.post-tags a:after{
	background-color: var(--primary-color);
	border-radius: 30px;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-100%, 0) rotate(10deg);
	transform-origin: top left;
	transition: 0.2s transform ease-out;
	will-change: transform;
	z-index: -1;
}

.post-tags a:hover::after{
	transform: translate(0, 0);
}

.post-tags a:hover{
	color: var(--accent-color);
}

.post-social-sharing{
	text-align: right;
}

.post-social-sharing ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-social-sharing ul li{
	display: inline-block;
	margin-left: 6px;
}

.post-social-sharing ul li a{
	width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.post-social-sharing ul li a:hover{
	background-color: var(--primary-color);
	color: var(--accent-color);
}

/******************************************/
/********   	  FAQs page css   	   ****/
/******************************************/

.faqs-section {
  /* background-color: #f8f5f5; */
  background-color: #fff;
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #151515;
  text-transform: uppercase;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.faq-item {
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  background-color: #fff;
}

.faq-item.active {
  border-left: 3px solid #f5decf;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-left: 10px;
}

.faq-answer {
  font-size: 16px;
  color: #000;
  padding-top: 8px;
  text-align: left;
}

/******************************************/
/*******    Page Not Found page css	   ****/
/******************************************/

.page-404{
	padding: 100px 0; 
}

.page-not-found-box{
	text-align: center;
}

.page-not-found-box h2{
	font-size: 30px;
	margin-bottom: 30px;
}

/******************************************/
/*********		 Responsive css   	   ****/
/******************************************/

@media only screen and (max-width: 1300px){
	header.main-header{
		margin: 0px;
	}

	.main-menu ul li a{
		padding: 12px 4px !important;
	}

	.step-item.step-1 .step-header:after,
	.step-item.step-2 .step-header:after{
		width: 120px;
		transform: translateX(120px);
		height: 24px;
	}

	.cta-content h3{
		font-size: 30px;
	}

	.why-choose-us-layout2-content{
		padding: 60px;
	}

	.our-process-layout2 .process-item2:after{
		display: none;
	}

	.process-item2 .process-step{
		right: -10px;
	}

	.team-item2 .team-links .team-social-links ul li a,
	.team-item2 .team-links .link-icon,
	.team-item2 .team-links .link-icon a{
		width: 36px;
		height: 36px;
	}
}

@media only screen and (max-width: 1024px){
	.main-menu ul li a{
		padding: 12px 2px !important;
	}

	.overview-counter-box .overview-counter-item .icon-box{
		width: 60px;
		height: 60px;
	}

	.overview-counter-box{
		margin-left: 0;
	}	
}

@media only screen and (max-width: 991px){
    #magic-cursor {
        display: none !important;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

    .section-title{
        margin-bottom: 40px;
    }

	.topbar{
		padding: 10px 0;
	}

	.topbar-contact-info{
		padding-left: 10px;
	}

	.header-social-links{
		padding-right: 10px;
	}

    .main-menu ul li{
        margin: 0 10px;
    }

	/* header.main-header{
		border-radius: 20px;
	} */

	header.main-header .header-sticky{
		padding: 15px 0;
	}

	header.main-header .header-sticky.active .slicknav_menu{
		border-radius: 0;
	}

    .hero{
        padding: 220px 0 60px;
    }

    .hero-content{
        padding-right: 0;
    }

	.hero-content .section-title{
		margin-bottom: 20px;
	}

	.hero-content .section-title h1{
		font-size: 56px;
	}

	.hero-content-body p{
		font-size: 16px;
	}

	.hero-content-footer{
		margin-top: 30px;
	}
	
	.hero.hero-slider .hero-slider-layout1 .hero-slide,
	.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide,
	.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide{
		padding: 220px 0 100px;
	}

	.hero.hero-slider .hero-slider-layout1 .hero-button-next,
	.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
	.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next,
	.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev{
		width: 40px;
		height: 40px;
		top: auto;
		bottom: 20px;
		transform: translateY(0);
		border-radius: 12px;
	}
	
	.hero.hero-slider .hero-slider-layout1 .hero-button-next,
	.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next{
		right: 20px;
	}

	.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
	.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev{
		left: 20px;
	}

	.hero-layout2{
		padding: 220px 0 60px;
	}

	.hero-layout2-box .section-title h1{
		font-size: 56px;
	}

	.hero-layout2-box .hero-content p{
		font-size: 16px;
	}

	.hero-layout3{
		padding: 220px 0 60px;
	}

	.hero-layout3 .hero-content .section-title h1{
		font-size: 42px;
	}

	.about-us{
		padding: 60px 0;
	}

	.about-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.about-img-1,
	.about-img-2{
		border-radius: 20px;
	}

	.about-layout2{
		padding: 30px 0 60px;
	}

	.about-image-slider{
		margin-right: 0;
	}

	.about-layout2-content{
		margin-left: 0;
		margin-top: 30px;
	}

	.about-layout3{
		padding: 60px 0;
	}

	.section-title-row{
		margin-bottom: 40px;
	}

	.about-layout3 .section-title,
	.section-title-row .section-title{
		margin-bottom: 20px;
	}

	.about-layout3 .section-title h2,
	.section-title-row .section-title h2{
		font-size: 38px;
	}

	.section-title-row .section-title h2 br{
		display: none;
	}

	.about-layout3-features ul li{
		margin-right: 20px;
		margin-bottom: 10px;
	}

	.about-layout3 .about-img-video{
		margin-top: 30px;
		border-radius: 20px;
	}

	.our-services{
		padding: 60px 0;
	}

	.service-item{
		border-radius: 20px;
	}

	.service-item .service-content{
		border-radius: 20px;
	}

	.service-image .service-icon{
		border-radius: 20px;
	}

	.service-item .service-content{
		bottom: 15px;
		left: 15px;
		right: 15px;
	}

	.services-layout2{
		padding: 60px 0;
	}

	.services-layout3{
		padding: 60px 0;
	}

	.service-slide3 .service-image{
		border-radius: 20px;
	}

	.service-slide3 .service-content{
		border-radius: 14px;
	}

	.our-process{
		padding: 60px 0 30px;
	}

	.step-item{
		padding-left: 0;
		padding-right: 0;
	}

	.step-item.step-1 .step-header:after,
	.step-item.step-2 .step-header:after{
		display: none;
	}

	.step-header .step-icon{
		width: 80px;
		height: 80px;
		border-radius: 20px;
	}

	.step-header .step-icon figure,
	.step-header .step-icon figure:before{
		border-radius: 20px;
	}

	.step-header .step-icon img{
		max-width: 50%;
	}

	.step-header .step-no{
		width: 38px;
		height: 38px;
		font-size: 18px;
		line-height: 30px;
	}

	.our-process-layout2{
		padding: 60px 0 30px;
	}

	.process-item2{
		margin-bottom: 30px;
	}

	.intro-video{
		padding: 30px 0;
	}

	.intro-video-box{
		border-radius: 20px;
	}

	.our-skills{
		padding: 30px 0;
	}

	.our-skills .section-title{
		margin-bottom: 40px;
	}

	.infobar{
		padding: 30px 0 60px;
	}

	.cta-content{
		padding: 50px 30px 30px;
		text-align: center;
	}

	.cta-content .phone-icon{
		width: 60px;
		height: 60px;
		border-width: 4px;
		left: 50%;
		top: auto;
		transform: translate(-50%,-80px);
	}

	.cta-content .phone-icon img{
		max-width: 50%;
	}

	.why-choose-us{
		padding: 60px 0 30px;
	}

	.why-choose-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.why-choose-item,
	.why-choose-item:before{
		border-radius: 20px;
	}

	.why-choose-image{
		border-radius: 26px;
	}

	.why-choose-us-layout2-content{
		padding: 60px 15px;
	}

	.stat-counter{
		padding: 60px 0 30px;
	}

	.counter-item{
		margin-bottom: 30px;
	}

	.counter-item .counter-icon{
		border-radius: 20px;
	}

	.solar-calculator{
		padding: 60px 0 30px;
	}

	.calculator-box .section-title{
		margin-bottom: 30px;
	}

	.calculator-box{
		border-radius: 20px;
	}

	.latest-blog{
		padding: 30px 0 0;
		background-color: #eff1ed;
	}

	.blog-item{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.blog-item .post-item-body{
		border-radius: 20px;
	}

	.latest-post-layout2{
		padding: 60px 0 30px;
	}

	.post-item2{
		margin-bottom: 30px;
	}

	footer.main-footer{
		padding: 0 0 40px;
	}

	.footer-contact{
		padding: 30px 0 0;
		margin-bottom: 40px;
	}

	.footer-contact-box{
		margin-bottom: 30px;
	}

	.footer-contact-box .contact-icon-box{
		border-radius: 20px;
	}

	.footer-links{
		padding-left: 0;
	}

	.footer-social-links{
		margin-bottom: 40px;
	}

	.footer-copyright{
		padding: 20px;
		margin-top: 40px;
		border-radius: 20px;
	}

	.page-header{
		padding: 220px 0 60px;
	}

	.page-header-box h1{
		font-size: 56px;
	}

	.latest-projects{
		padding: 60px 0 30px;
	}

	.project-item{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.project-item .project-image:before{
		border-radius: 20px;
	}

	.project-item .project-content{
		border-radius: 20px;
	}

	.project-item .project-link a{
		border-radius: 10px;
	}

	.our-projects-layout2{
		padding: 60px 0;
	}

	.testimonials{
		padding: 60px 0;
	}

	.testimonial-item{
		border-radius: 20px;
	}

	.our-team{
		padding: 60px 0 0;
	}

	.team-item{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.team-item .team-content{
		border-radius: 20px;
	}

	.footer-ticker{
		padding-top: 15px;
	}

	.scrolling-content span{
		font-size: 50px;
	}

	.page-services{
		padding: 60px 0 0;
	}

	.page-service-single{
		padding: 60px 0 30px;
	}

	.service-sidebar{
		padding-right: 0;
	}

	.service-sidebar{
		margin-bottom: 40px;
	}

	.services-list-box{
		border-radius: 20px;
	}

	.sidebar-cta-box{
		border-radius: 20px;
	}

	.service-featured-image{
		border-radius: 20px;
	}

	.service-entry,
	.service-whyus,
	.service-features{
		margin-bottom: 40px;
	}

	.service-benefits{
		margin-bottom: 10px;
	}

	.service-features .service-feature-image{
		border-radius: 20px;
	}

	.contact-information{
		padding: 60px 0 30px;
	}

	.contact-info-item{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.contact-info-item .contact-info-content{
		border-radius: 20px;
	}

	.contact-info-item .contact-icon{
		border-radius: 10px;
	}

	.google-map-form{
		padding: 0;
	}

	.google-map{
		position: relative;
	}

	.google-map iframe{
		height: 400px;
	}

	.page-blog-archive{
		padding: 60px 0 30px;
	}

	.page-single-post{
		padding: 60px 0 30px;
	}

	.post-entry blockquote p{
		font-size: 22px;
	}

	.post-featured-image{
		border-radius: 20px;
	}

	.post-entry blockquote{
		border-radius: 20px;
	}

	.post-social-sharing{
		text-align: left;
		margin-top: 20px;
	}

	.related-posts{
		padding: 30px 0;
	}

	.page-faqs{
		padding: 60px 0 30px;
	}

	.our-projects{
		padding: 60px 0 30px;
	}

	.page-project-single{
		padding: 60px 0 30px;
	}

	.project-sidebar{
		padding-right: 0;
		margin-bottom: 40px;
	}

	.about-project-box{
		border-radius: 20px;
	}

	.project-feature-image{
		border-radius: 20px;
	}

	.project-gallery-items .project-gallery-item img{
		border-radius: 20px;
	}

	.page-team{
		padding: 60px 0 0px;
	}

	.page-team-single{
		padding: 60px 0 30px;
	}

	.team-single-image{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.team-contact-form-box{
		margin-top: 60px;
		border-radius: 20px;
		padding: 40px;
	}

	.page-404{
		padding: 60px 0;
	}

	.features-layout2{
		padding: 60px 0 30px;
	}

	.features-item2{
		padding: 30px;
	}

	.features-item2 .features-header .icon-box{
		width: 60px;
		height: 60px;
		border-radius: 20px;
	}

	.features-item2 .features-header .icon-box img{
		max-width: 60%;
		max-height: 60%;
	}

	.features-item2 .features-header h3{
		width: calc(100% - 80px);
		font-size: 22px;
	}

	.pricing-layout2{
		padding: 60px 0 30px;
	}

	.pricing-layout2 .pricing-item2{
		max-width: 480px;
		margin: 18px auto 40px;
	}

	.company-overview{
		padding: 60px 0 30px;
	}

	.overview-counter-box{
		margin-top: 30px;
	}

	.team-layout2{
		padding: 60px 0 30px;
	}

	.team-item2{
		margin-bottom: 30px;
	}

	.testimonial-layout2{
		padding: 60px 0;
	}

	.why-renewable{
		padding: 60px 0;
	}

	.why-renewable-left{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.why-renewable-left .why-renewable-img-1 img,
	.why-renewable-left .why-renewable-img-2 img{
		border-radius: 20px;
	}

	.our-story{
		padding: 60px 0;
	}

	.our-story-content{
		margin-bottom: 40px;
	}

	.our-story-image{
		border-radius: 20px;
	}

	.project-layout3{
		padding: 60px 0;
	}

	.project-slide3{
		border-radius: 20px;
	}

	.project-slide3 .project-image img{
		aspect-ratio: 1/1;
	}

	.why-choose-us-layout3{
		padding: 60px 0 30px;
	}

	.why-choose-item3{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.why-choose-item3:before{
		border-radius: 20px;
	}

	.our-clients-layout3{
		padding: 60px 0;
	}

	.client-logos-layout3 .client-logo-item{
		padding: 30px;
		border-radius: 20px;
	}

	.our-pricing-layout3{
		padding: 60px 0 30px;
	}

	.pricing-item-layout3{
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.testimonial-layout3{
		padding: 60px 0;
	}

	.testimonial-slide3{
		border-radius: 20px;
	}

	.latest-post-layout3{
		padding: 60px 0 30px;
	}

	.post-item3{
		margin-bottom: 30px;
	}

	.post-item3 .post-featured-image{
		border-radius: 20px;
	}
}

@media only screen and (max-width: 767px){
   
    .btn-default{
        padding: 10px 22px;
    }

    header.main-header .header-sticky{
        padding: 15px 0;
    }

	header.main-header .header-sticky.active{
		padding: 10px 0;
	}

	.navbar-brand img{
		max-height: 40px;
	}

	.topbar-contact-info ul{
		text-align: center;
	}

	.header-social-links{
		display: none;
	}

    .hero{
        padding: 220px 0 60px;
    }

	.hero:before{
		background: linear-gradient(90deg, rgba(22, 51, 0, 0.75) 0%, rgba(22, 51, 0, 0.20) 100%);
	}

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

	.hero.hero-slider .hero-slider-layout1 .hero-slide:before{
		background: linear-gradient(90deg, rgba(22, 51, 0, 0.75) 0%, rgba(22, 51, 0, 0.20) 100%);
	}

    .section-title{
        margin-bottom: 30px;
    }

    .section-title h3{
        margin-bottom: 10px;
    }

    .section-title h1,
    .section-title h2,
	.hero-content .section-title h1{
        font-size: 30px;
    }

	.hero-content-footer .btn-default{
		margin-right: 10px;
	}

	.hero-layout2-box .section-title h1{
		font-size: 30px;
	}

	.about-us{
		padding: 40px 0;
	}

	.about-image{
		padding-bottom: 40px;
	}

	.about-content ul li{
		width: 100%;
		margin-right: 0;
	}

	.about-layout2{
		padding: 30px 0 40px;
	}

	.about-layout2-content .section-title{
		margin-bottom: 20px;
	}

	.about-layout2-content .about-stats{
		margin-bottom: 10px;
	}

	.about-layout2-content .about-stats-item{
		margin-bottom: 20px;
	}

	.about-layout2-content{
		margin-top: 10px;
	}

	.about-layout2-overlay-content{
		position: relative;
		left: 0;
		right: 0;
		bottom: 0;
		margin-top: 20px;
		border-radius: 0;
	}

	.about-overaly-item{
		background-color: var(--secondary-color);
		margin-bottom: 20px;
		border-radius: 20px;
	}

	.our-services{
		padding: 40px 0;
	}

	.services-layout2{
		padding: 40px 0;
	}

	.services-layout2-slide{
		border-radius: 20px;
	}

	.services-layout2-slide .service-content{
		padding: 20px;
	}

	.services-layout2-slide .service-content .icon-box{
		width: 50px;
	}

	.services-layout2-slide .service-content .icon-box a{
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

	.services-layout2-slide .service-content .icon-box a::before{
		border-radius: 14px;
	}

	.services-layout2-slide .service-content .service-info{
		width: calc(100% - 70px);
	}

	.our-process{
		padding: 40px 0 20px;
	}

	.step-item{
		margin-bottom: 30px;
	}

	.our-process .row .col-md-4:last-child .step-item{
		margin-bottom: 0;
	}

	.our-process-layout2{
		padding: 40px 0 10px;
	}

	.process-item2 .process-step{
		width: 70px;
		height: 70px;
		font-size: 22px;
		top: 0;
		right: 0;
	}

	.intro-video{
		padding: 20px 0;
	}

    .intro-video-box {
        border-radius: 20px;
		height: 300px;
    }

	.video-play-button a{
		height: 50px;
	}

	.video-play-button a img{
		max-width: 50px;
	}

	.our-skills{
		padding: 20px 0;
	}

	.skillbar{
		margin-bottom: 20px;
	}

	.skillbar .skill-data .title,
	.skillbar .skill-data .count{
		font-size: 18px;
	}

	.infobar{
		padding: 20px 0 40px;
	}

	.why-choose-us{
		padding: 40px 0 10px;
	}

	.why-choose-us-layout2-content{
		padding: 40px 15px;
	}

	.why-choose-us-layout2-features .why-features-item{
		margin-bottom: 30px;
	}

	.why-choose-us-layout2-features .why-features-item .icon-box{
		margin-right: 0;
		margin-bottom: 20px;
		width: 50px;
		height: 50px;
		border-radius: 15px;
	}

	.why-choose-us-layout2-features .why-features-item .why-features-desc{
		width: 100%;
	}

	.stat-counter{
		padding: 40px 0 10px;
	}

	.solar-calculator{
		padding: 40px 0 20px;
	}

	.calculator-box{
		padding: 20px;
	}

	.latest-blog{
		padding: 20px 0 0;
	}

	.blog-item .post-item-body{
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.latest-post-layout2{
		padding: 40px 0 10px;
	}

	.post-item2 .post-body{
		padding: 20px;
	}

	.footer-contact-box .contact-icon-box{
		width: 60px;
		height: 60px;
		margin-right: 20px;
	}

	.footer-contact-info{
		width: calc(100% - 80px);
	}

	.footer-contact-box .contact-icon-box img{
		max-width: 50%;
		max-height: 50%;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-copyright{
		margin-top: 10px;
	}

	.footer-copyright-text p{
		font-size: 16px;
	}

	.page-header-box h1{
		font-size: 30px;
		text-align: center;
		margin-bottom: 4px;
	}

	.page-header-box ol{
		justify-content: center;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 14px;
	}

	.latest-projects{
		padding: 40px 0 10px;
	}

	.testimonials{
		padding: 40px 0;
	}

	.testimonial-body{
		padding: 0 30px 30px;
	}

	.testimonial-item{
		margin-top: 40px;
	}

	.testimonial-header{
		top: -40px;
		margin-bottom: -40px;
	}

	.testimonial-author-img .icon-quote{
		bottom: 20px;
	}

	.testimonial-header .testimonial-author-img{
		max-width: 100px;
	}

	.testimonial-slider .swiper-pagination{
		margin-top: 20px;
	}

	.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
		width: 14px;
		height: 14px;
	}

	.our-team{
		padding: 40px 0 0;
	}

	.page-services{
		padding: 40px 0 0;
	}

	.page-service-single{
		padding: 40px 0 30px;
	}

	.services-list-box ul li a{
		font-size: 18px;
	}

	.services-list-box ul li a:before{
		top: 22px;
	}

	.service-whyus h2,
	.service-benefits .service-benefits-title h2,
	.service-features .service-feature-content h2,
	.faq-box h2{
		font-size: 26px;
	}

	.benefits-item{
		padding-right: 0;
	}

	.service-features .service-feature-image{
		margin-bottom: 20px;
	}

	.contact-information{
		padding: 40px 0 10px;
	}

	.contact-form-box{
		padding: 40px 10px;
	}

	.page-blog-archive{
		padding: 40px 0 30px;
	}

	.post-pagination{
		margin-top: 10px;
	}

	.post-single-meta{
		text-align: center;
	}

	.page-single-post{
		padding: 40px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		padding: 30px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-tags{
		flex-wrap: wrap;
		font-size: 18px;
	}

	.post-tags a{
		font-size: 14px;
		padding: 6px 14px;
	}

	.related-posts{
		padding: 20px 0 0;
	}

	.page-faqs{
		padding: 40px 0 20px;
	}

	.our-projects{
		padding: 40px 0 30px;
	}

	.page-project-single{
		padding: 40px 0 20px;
	}

	.about-project-box{
		padding: 30px;
	}

	.project-gallery-items .project-gallery-item{
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	.project-gallery-items .project-gallery-item:nth-of-type(2n + 2){
		margin-right: 0;
	}

	.project-entry h1{
		font-size: 24px;
	}
	
	.project-entry h2{
		font-size: 22px;
	}
	
	.project-entry h3{
		font-size: 20px;
	}
	
	.project-entry h4{
		font-size: 18px;
	}
	
	.project-entry h5{
		font-size: 16px;
	}
	
	.project-entry h6{
		font-size: 14px;
	}

	.page-team{
		padding: 40px 0 0;
	}

	.page-team-single{
		padding: 40px 0 20px;
	}

	.team-single-information .team-single-header h2{
		font-size: 26px;
	}

	.team-single-meta p{
		font-size: 16px;
	}

	.team-single-meta p strong,
	.team-social-links h3{
		font-size: 18px;
	}

	.team-contact-form-box{
		padding: 30px 20px;
	}

	.page-404{
		padding: 40px 0 20px;
	}

	.page-not-found-box h2{
		font-size: 26px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.features-layout2{
		padding: 40px 0 20px;
	}

	.our-projects-layout2{
		padding: 40px 0;
	}

	.project-layout2-slide{
		border-radius: 20px;
	}

	.project-layout2-slide .project-content{
		padding: 15px 80px 20px 20px;
	}

	.project-layout2-slide .project-content .btn-link-box a{
		width: 50px;
		height: 50px;
	}

	.pricing-layout2{
		padding: 40px 0 10px;
	}

	.pricing-layout2 .pricing-item2{
		padding: 0 25px 30px;
	}

	.company-overview{
		padding: 40px 0 10px;
	}

	.team-layout2{
		padding: 40px 0 10px;
	}

	.testimonial-layout2{
		padding: 40px 0;
	}

	.testimonial-slider2 .testimonial-item2{
		padding: 30px;
		border-radius: 20px;
	}

	.hero-layout3 .hero-content .section-title h1,
	.about-layout3 .section-title h2,
	.section-title-row .section-title h2{
		font-size: 30px;
	}

	.hero-layout3 .hero-content,
	.hero-layout3 .hero-content .section-title{
		text-align: center;
	}

	.hero-layout3 .hero-image{
		text-align: center;
		margin-top: 30px;
	}

	.hero-layout3 .hero-image-box{
		max-width: 240px;
	}

	.about-layout3{
		padding: 40px 0;
	}

	.about-layout3-features ul li{
		font-size: 18px;
		padding: 0 0 0 36px;
	}

	.about-layout3-features ul li:before{
		width: 26px;
		height: 26px;
	}

	.services-layout3{
		padding: 40px 0;
	}

	.service-slide3 .service-content{
		padding: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.why-renewable{
		padding: 40px 0;
	}

	.why-renewable-left .why-renewable-img-2{
		margin-top: 20px;
	}

	.why-renewable-left .why-renewable-img-1 p,
	.why-renewable-left .why-renewable-img-2 p{
		font-size: 16px;
		border-radius: 6px;
	}

	.why-renewable-item{
		margin-bottom: 30px;
	}

	.why-renewable-item h3{
		font-size: 22px;
	}

	.why-renewable-item .stepno{
		font-size: 20px;
	}

	.our-story{
		padding: 40px 0;
	}

	.our-story-body .btn-default{
		margin-top: 20px;
	}

	.our-story-image{
		margin-right: 0;
	}

	.story-counter-box{
		margin-top: 30px;
	}

	.story-counter-item{
		margin-bottom: 30px;
	}

	.project-layout3{
		padding: 40px 0;
	}

	.project-slide3 .project-content h3{
		font-size: 22px;
	}

	.why-choose-us-layout3{
		padding: 40px 0 10px;
	}

	.our-clients-layout3{
		padding: 40px 0 10px;
	}

	.client-logos-layout3{
		justify-content: center;
	}

	.client-logos-layout3 .client-logo-item{
		width: calc(50% - 15px);
		margin-bottom: 30px;
	}

	.client-logos-layout3 .client-logo-item:nth-of-type(5n + 5){
		margin-right: 30px;
	}

	.client-logos-layout3 .client-logo-item:nth-of-type(2n + 2){
		margin-right: 0;
	}

	.our-pricing-layout3{
		padding: 40px 0 10px;
	}

	.testimonial-layout3{
		padding: 40px 0;
	}

	.testimonial-slide3{
		padding: 30px;
	}

	.latest-post-layout3{
		padding: 40px 0 10px;
	}
}