html {
    touch-action: manipulation; /* Prevents pinch zoom on some devices */
    -ms-content-zooming: none;  /* IE/Edge legacy */

}

body {
	font-family: 'Roboto', sans-serif !important;
	margin: 0px;
	padding: 0px 0px 0px 0px;
	overflow-y: auto;
	overflow-x: hidden !important;
	/* -webkit-overflow-scrolling: touch; */
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}
:root { 
	--txt-p--color: #232b37;
	--txt-p--color-dark-blue: #232b37;

	--txt-h--color: #182f40;

	--txt--color-white: #ffffff;
	--txt--color-light-blue: #0789c1;
	--txt--color-medium-blue: #034765;
}
a, a:hover, a:active, a:focus {
	outline: none !important;
	text-decoration: none !important;
}
.spacer {
	clear: both;
	font-size: 0;
	line-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	border: none !important;
	background: none !important;
	min-height: 0 !important;
}
.spacer_clear {
	display: table;
}


h1, h2, h3, h4, h5 {
	font-family: 'Raleway', sans-serif !important;
}

#header,
#page-body, 
#footer {
    margin: 0px;
    padding: 0px;
}
/*--Common--*/

.h3_head1 {
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    margin: 0;
    padding: 0px 0px 30px 0px;
    letter-spacing: 0.3px;
}

.h3_head2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
    padding: 0px 0px 30px 0px;
    letter-spacing: 0.3px;
}

.h3_head3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
    padding: 0px 0px 30px 0px;
    letter-spacing: 0.3px;
}

.h4_head1 {
    font-size: 22px;
    font-weight: 700;
    color: #182640;
    line-height: 40px;
    margin: 0;
    padding: 0px 0px 10px 0px;
    letter-spacing: 1px;
}

.h4_head1 > strong {
    color: #758b20;
}

.h4_head2 {
    font-size: 20px;
    font-weight: 700;
    color: #182640;
    line-height: 28px;
    margin: 0;
    padding: 0px 0px 10px 0px;
    letter-spacing: 1px;
}

.h4_head2 > strong {
    color: #758b20;
}
.p-text {
    font-size: 17px;
    font-weight: 300;
    color: #182640;
    line-height: 24px;
    margin: 0;
    padding: 0px 0px 30px 0px;
    letter-spacing: 0.5px;
}
.p-text strong { 
    font-weight: 700;
    color: #4e6c53;
}

/*Content List*/
.content-list {
    margin: 0px;
    padding: 0px;
}
.content-list.list-flex {
    display: flex;
    flex-wrap: wrap;
}
.content-list > li {
    margin: 0px;
    padding: 0px 0px 15px 25px;
    font-size: 15px;
    color: #182640;
    font-weight: 300;
    position: relative;
    list-style: none;
}
.content-list > li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0px;
    width: 10px;
    height: 10px;
    border-left: 7px solid #4e6c53;
    border-top: 7px solid transparent;
    border-bottom: 5px solid transparent;
}
/*Content List*/

#toTop {
    background-color: rgb(136 154 65 / 90%);
    background-repeat: no-repeat;
    border-radius: 100%;
    color: #ffffff;
    display: block;
    font-size: 19px;
    font-weight: 300;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    padding: 7px;
    transition: ease 0.5s;
}
#toTop:hover {
    background-color: rgb(136 154 65 / 100%);
}

.scroll-box {
  scrollbar-width: thin;
  scrollbar-color: rgb(255 255 255 / 50%) rgb(255 255 255 / 0%);
}

.scroll-box::-webkit-scrollbar {
  width: 10px;
}

.scroll-box::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ff6a00, #ee0979);
  border-radius: 10px;
}

.aciton-btn-container {
    margin: 0px -7.5px;
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;
}
.aciton-btn-container > li  {
    margin: 0px;
    padding: 0px 7.5px;
    list-style: none;
}

/*--Common--*/

/*--Grid View--*/

.gird-view {
    display: grid;
    gap: 15px;
}

.gird-view[data-grid-col="5"] { 
    grid-template-columns: repeat(5, 1fr);
}

/*--Grid View--*/


/*--Header--*/
header {
	margin: 0px;
	padding: 0px;
}
.home_header {
	/* background-color: rgb(11 9 34 / 50%); */
    position: relative;
    width: 100%;
    z-index: 999;
    position: fixed;
	transition: ease 0.5s;
}
.home_header:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    /* background: linear-gradient(108deg,rgba(67, 99, 72, 1) 50%, rgba(28, 77, 35, 1) 100%); */
    background-color: #fff;
}
.home_header.fixed-header {
    position: fixed !important;
    top: 0;
    width: 100% !important;
    z-index: 999 !important;
    box-shadow: 0px 15px 20px -10px rgb(10 19 32 / 40%);
}
.home_header.fixed-header:before {
	background: rgb(255 255 255 / 80%);
}

.home_header .header-top {
    background-color: #436348;
    position: relative;
    padding: 0px;
    height: 45px;
    transition: ease 0.5s;
    top: 0px;
    width: 100%;
}
.home_header.fixed-header .header-top { 
    position: absolute;
    top: -50px;
}
.home_header .header-top .head-top-inner-container { 
    display: table;
    width: 100%;
    padding: 10px 0px;
}
.home_header .header-top .head-top-inner-container .header-top-left {
    float: left;

}
.home_header .header-top .head-top-inner-container .header-top-right {
    float: right;

}

.head-contact-list {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.head-contact-list > li {
    margin: 0px;
    padding: 0px 15px 0px 0px;
} 

.head-contact-list > li:last-child {
    padding-right: 0px;
}

.head-contact-list > li > a {
    font-size: 14px;
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
    float: left;
    letter-spacing: 0.5px;
    transition: ease 0.5s;
} 
.head-contact-list > li > a:hover {
    color: rgb(255 255 255 / 100%);
}
.head-contact-list > li > a > i {
    padding-right: 10px;
}

.header-social {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 0px 0px 0px;
}
.header-social li {
	list-style: outside none none;
	margin: 0;
	padding: 0 20px 0px 0px;
}
.header-social li:last-child {
	padding-right: 0px;
}
.header-social li a {
	color: rgb(255 255 255 / 80%);
	display: block;
	font-size: 17px;
	margin: 0;
	padding: 0;
}
.header-social li a:hover {
	/* color: #0789c1; */
    color: rgb(255 255 255 / 100%);
}
.header-social li a i {
	margin: 0px;
	padding: 0px;
}
.header-social li.facebook {

}
.header-social li.twitter {

}
.header-social li.instagram {
	
}
/*.header-social li.instagram a {
	line-height: 20px;
}
.header-social li.instagram:hover a {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-clip: text;
    color: transparent;
}
.header-social li.linkedin a {
    font-size: 21px;
    line-height: 16px;
}
.header-social li.linkedin:hover a {
    color: #0077B5;
}

.header-social li.youtube a {
    font-size: 23px;
    line-height: 16px;
}
.header-social li.youtube:hover a {
    color: #FF0000;
} */

.home_header .header-container {
    width: 100%;
	padding: 15px 0px;
    display: flex;
    position: relative;
    transition: ease 0.5s;
}

.home_header.fixed-header .header-container { 
    padding: 15px 15px;
    max-width: 100% !important;
}
.logo {
	height: 60px;
	margin: 0px 0px;
	padding: 0px;
	float: left;
	transition: ease 0.5s;
}
.logo img {
	height: 100%;
	transition: ease 1s;
	position: relative;
    /* filter: grayscale(1) brightness(20.5); */
}


.home_header.fixed-header .logo {
	height: 40px;
}
.home_header.fixed-header .logo img {
    height: 100%;
}

/*--desktop menu-- */

nav.menu-container {
    float: right;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%);
	transition: ease 1s;
}

.home_header.fixed-header nav.menu-container {
	right: 15px;
    transform: translate(0%, -50%);
}

nav.menu-container > ul {
	display: table;
	margin: 0 -20px;
	padding: 0;
}
nav.menu-container > ul > li {
	display: table-cell;
	list-style: outside none none;
	margin: 0;
	padding: 0 17px;
	position: relative;
}
nav.menu-container > ul > li:last-child {
	/* padding-right: 0px; */
}
nav.menu-container > ul > li > a {
    color: rgb(91 99 114);
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0px;
    transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
}
nav.menu-container > ul > li > a > span { 
    padding: 10px 0px;
    position: relative;
    z-index: 1;
}
nav.menu-container > ul > li > a:after {
    content: "";
    background-color: #758b20;
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    transition: ease 0.5s;
    visibility: hidden;
}
nav.menu-container > ul > li:hover > a {
    color: #4e6c53;;
}

nav.menu-container > ul > li.active > a {
    color: #ffffff;
    font-weight: 400;
}
/* nav.menu-container > ul > li:hover > a:after {
    width: calc(100% + 30px);
    height: calc(100% + 20px);
    visibility: visible;
} */
nav.menu-container > ul > li.active > a:after {
    background-color: #4e6c53;
    width: calc(100% + 30px);
    height: calc(100% + 20px);
    visibility: visible;
}
nav.menu-container > ul > li > button.volunteerbtn,
nav.menu-container > ul > li > a.volunteerbtn {
    background-color: transparent;
    display: block;
    font-size: 14px;
    color: #758b20;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0;
    transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
    border: none;
    text-transform: uppercase;
    border: 1px solid #758b20;
}

nav.menu-container > ul > li > button.volunteerbtn:hover ,
nav.menu-container > ul > li.active > button.volunteerbtn,
nav.menu-container > ul > li > a.volunteerbtn:hover,
nav.menu-container > ul > li.active > a.volunteerbtn  {
    background-color: #758b20;
    color: #fff;
}

nav.menu-container > ul > li.active > a.volunteerbtn::after  {
    display: none;
}

nav.menu-container > ul > li > a.submenu-head {
	padding-right: 25px;
	}
	
nav.menu-container > ul > li > a.submenu-head:before {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 0px;
    color: rgb(24, 47, 64);
}	
nav.menu-container > ul > li:hover > a.submenu-head:before,
nav.menu-container > ul > li.active > a.submenu-head:before {
background: linear-gradient(90deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	}
nav.menu-container > ul > li > a > i {
	font-size: 16px !important;
    padding: 0px 5px 0px 0px;
}

nav.menu-container > ul > li:hover > .sub-menu {
	display: block;

	}
nav.menu-container > ul > li > .sub-menu {
    display: none;
    margin: 0px;
    padding: 17px 0px 0px 0px;
    position: absolute;
    top: 100%;
    right: 0px;
    min-width: 220px;
}
nav.menu-container > ul > li > .sub-menu:before {
    content: "";
    position: absolute;
    border-bottom: 13px solid rgb(4 13 30 / 85%);
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
    top: 5px;
    right: 60px;
    z-index: 1;
}
nav.menu-container > ul > li > .sub-menu:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 17px);
    bottom: 0px;
    background-color: rgb(4 13 30 / 85%);
    backdrop-filter: blur(5px);
    box-shadow: 0px 30px 17px -20px rgba(0, 0, 0, 0.5), 17px 5px 17px -17px rgba(0, 0, 0, 0.5), -17px 5px 17px -17px rgba(0, 0, 0, 0.5);
}
nav.menu-container > ul > li > .sub-menu > li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    position: relative;
    z-index: 1;
}
nav.menu-container > ul > li > .sub-menu > li > a {
    color: rgb(255 255 255 / 80%);
    display: block;
    font-size: 15px;
    margin: 0;
    padding: 15px 20px;
    transition: ease 0.2s;
    -webkit-transition: ease 0.2s;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    /* font-family: 'Raleway', sans-serif !important; */
}
nav.menu-container > ul > li > .sub-menu > li:last-child > a {
	border-bottom: none;

	}

nav.menu-container > ul > li > .sub-menu > li:hover > a,
nav.menu-container > ul > li > .sub-menu > li.active > a {
    color: #FFF;
    background-color: #ec4635;
}

/*--desktop menu-- */
/* mobile menu */

.mobile-menu-container {
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    right: -1920px;
    overflow: hidden;
    z-index: 999;
	transition:  ease 0.5s;
}
.mobile-menu-container::before {
	content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 9 30 / 50%);
    backdrop-filter: blur(8px);
}
.mobile-menu-container.active {
	right: 0px;
}
.mobile-menu-container .mobile-menu-content {
	background-color: #fff;
	/* border-left: 1px solid #0486bd; */
    width: calc(100% - 50px);
    height: 100vh;
    position: relative;
    z-index: 9;
    float: right;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head {
    margin: 0px;
    padding: 15px 25px;
	position: relative;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .mobile-menu-logo {
	height: 40px;
	margin: 0px;
	padding: 0px;
	display: block;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .mobile-menu-logo > img {
	height: 100%;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.mobile-menu-container .mobile-menu-content .mobile-menu-head > .close-mob-menu {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translatey(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .close-mob-menu > span {
	width: 2px;
    height: 20px;
    background-color: rgb(24, 47, 64);
    position: absolute;
	transition: ease 0.2s;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .close-mob-menu > span:nth-of-type(1) {
	transform: rotate(45deg);
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .close-mob-menu > span:nth-of-type(2) {
	transform: rotate(-45deg);
}
.mobile-menu-container .mobile-menu-content .mobile-menu-head > .close-mob-menu:hover > span {
    background-color: rgb(255 255 255 / 100%);
    width: 3px;
}
.mobile-menu-container .mobile-menu-content .mobile-menu-body {
	margin: 0px;
	padding: 0px;
	height: calc(100% - 70px);
}
.mobile-menu-container .mobile-menu-content .mobile-menu-body > .menu-h3-content {
	font-size: 26px;
    color: #ffffffeb;
    line-height: 35px;
    font-weight: 100;
    letter-spacing: 0.5px;
    margin: 0px;
    padding: 0px 0px 15px 0px;
	border-bottom: 2px dotted rgb(118 117 119);
}
.mobile-menu-container .mobile-menu-content .mobile-menu-footer {
	margin: 0px;
	padding: 0px 25px 15px;
	
}
.mobile-menu-container .mobile-menu-content .mobile-menu-footer > .menu-h4-content {
	margin: 0px;
    padding: 15px 0px 15px 0px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
	border-top: 2px dotted rgb(118 117 119);
}


.mobile-menu-nav {
    margin: 0;
    padding: 15px 0px 15px 0px;
    height: calc(100%);
    overflow-x: hidden;
    overflow-y: auto;
	border-top: 1px solid rgb(198 212 221);
}
.mobile-menu-nav > ul {
    margin: 0;
    padding: 0;
}
.mobile-menu-nav > ul > li {
	list-style: outside none none;
    margin: 0;
    padding: 0;
    position: relative;
	list-style: none;
}
.mobile-menu-nav > ul > li > a {
	color: rgb(24, 47, 64);
    display: block;
    font-size: 15px;
    margin: 0;
    padding: 13px 15px;
    transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    /* text-transform: uppercase; */
}
.mobile-menu-nav > ul > li:hover > a,
.mobile-menu-nav > ul > li.active > a {
	padding-left: 15px;
	padding-right:  15px;
	background-color: #436348;
	color: rgb(255 255 255 / 100%);
}
.mobile-menu-nav > ul > li > a > i { 
    margin: 0px 10px 0px 0px;
    color: rgb(236 70 53);
}
.mobile-menu-nav > ul > li:hover > a > i,
.mobile-menu-nav > ul > li.active > a > i { 
    color: rgb(255 255 255 / 100%);
}
.mobile-menu-nav > ul > li > a.submenu-head {
    position: relative;
    font-weight: 500;
}
.mobile-menu-nav > ul > li.active > a.submenu-head {
    background-color: rgb(217 51 34);
}
.mobile-menu-nav > ul > li > a.submenu-head:before {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 15px;
    color: rgb(24, 47, 64)
}
.mobile-menu-nav > ul > li:hover > a.submenu-head:before,
.mobile-menu-nav > ul > li.active > a.submenu-head:before {
    color: rgb(255 255 255 / 100%);
}
.mobile-menu-nav > ul > li > .sub-menu {
    margin: 0px;
    padding: 0px 0px 0px;
}
.mobile-menu-nav > ul > li > .sub-menu > li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.mobile-menu-nav > ul > li > .sub-menu > li > a  {
    color: rgb(24, 47, 64);
    display: block;
    font-size: 15px;
    margin: 0;
    padding: 13px 0px 13px 39px;
    transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    /* text-transform: uppercase; */
}
.mobile-menu-nav > ul > li > .sub-menu > li > a::before  {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    position: absolute;
    top: 12px;
    left: 15px;
    color: rgb(24, 47, 64);
    transform: rotate(-90deg);
}
.mobile-menu-nav > ul > li > .sub-menu > li:hover > a,
.mobile-menu-nav > ul > li > .sub-menu > li.active > a  {
    padding-left: 30px;
	padding-right:  10px;
	background-color: rgb(236 70 53);
	color: rgb(255 255 255 / 100%);
}
.mobile-menu-nav > ul > li > .sub-menu > li:hover > a::before,
.mobile-menu-nav > ul > li > .sub-menu > li.active > a::before  {
    left: 10px;
    color: rgb(255 255 255 / 100%);
}

/* mobile menu */

/* mobile menu btn */
.menu-btn {
	position: absolute;
    top: 50%;
    right: 15px;
    transform: translatey(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    /* background-color: #050e26; */
    padding: 4px;
}
.menu-btn > span {
	width: 10px;
    height: 10px;
    display: block;
    border: 2px solid #4a4f59;
    margin: 3px;
	transition: ease 0.5s;
}

.menu-btn > span:nth-of-type(2) {
	transform: rotate(45deg);
    border-color: #436348 !important;
}

.menu-btn:hover > span {
	border: 2px solid #ec4635;
	}
.menu-btn:hover > span:nth-of-type(2) {
	transform: rotate(180deg);
}

.fixed-header .menu-btn > span {
     border: 2px solid #172235;
}
/* mobile menu btn */
/*--Header--*/


/*--Home Banner--*/
.home_banner {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.home_banner img {
	width: 100%;
}
.home_banner .banner_contant {
    left: 0;
    margin: 0;
    padding: 0 8%;
    position: absolute;
    left: 0;
    top: 75%;
    width: 100%;
    transform: translatey(-50%);
    z-index: 2;
    text-align: center;
}

.home_banner  .banner_contant > .banner-head {
    color: #FFFFFF;
    display: inline-block;
    font-size: 60px;
    font-weight: 800;
    line-height: 100px;
    margin: 0;
    padding: 0px;
    letter-spacing: 0.5px;
    position: relative;
    left: 0px;
    transition: ease 1s;
    text-shadow: 5px 5px 15px #111a2c, 5px 5px 15px #111a2c;
    transform: translateY(700px);
}

.home_banner  .banner_contant > .banner-head > span { 
    background-color: rgb(141 171 19);
    padding: 15px 30px;
    backdrop-filter: blur(3px);
    font-weight: 100;
    text-shadow: none;
    box-shadow: 0px 20px 20px -10px #111a2c;
}

.home_banner  .rslides1_on .banner_contant > .banner-head { 
    transform: translateY(0px);
}

.home_banner  .banner_contant > .banner-details {
    color: rgb(255 255 255 / 75%);
    display: inline-block;
    font-size: 20px;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 300;
    line-height: 28px;
    margin: 0;
    padding: 30px 0px 30px 0px;
    letter-spacing: 0.5px;
    position: relative;
    left: 0px;
    transition: ease 1.5s;
}

.home_banner  .banner_contant > .banner-details1 {
    color: #a2bde5;
    display: inline-block;
    font-size: 20px;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 300;
    line-height: 28px;
    margin: 0;
    padding: 30px 0px 30px 0px;
    letter-spacing: 0.5px;
    position: relative;
    left: 0px;
    transition: ease 1.5s;
}


.home_banner  .banner_contant > .banner-action {
    margin: 0px;
    padding: 20px 0px 0px 0px;
    display: flex;
}


.home_banner > .slider-nav-container {
    /* position: absolute; */
    top: 0px;
    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
    z-index: 99;
}
.home_banner > .slider-nav-container > li.slider-nav {
    position: absolute;
    top: 0px;
    height: 100%;
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 60px;
    z-index: 9;
}
.home_banner > .slider-nav-container > li.slider-nav.slide-left {
	left: 0px;
}
.home_banner > .slider-nav-container > li.slider-nav.slide-right {
	right: 0px;
}

.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav {
    background-color: rgba(0,0,0,0.4);
    height: 100px;
    width: 100%;
    position: absolute;
    font-size: 0px;
    cursor: pointer;
    top: 50%;
    bottom: 0px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    opacity: 0;
    text-align: center;
}
.home_banner:hover > .slider-nav-container > li.slider-nav > .rslides_nav {
	opacity: 0.3;

	}
.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav:before {
    font-family: 'Font Awesome 6 Pro';
    font-size: 20px;
    color: #e2e2e2;
    font-weight: 900;
    display: table;
    top: 50%;
    padding: 0px;
    position: relative;
    width: 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.prev {
	
	
}

.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.prev:before {
	content: "\f053";
}
.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.next {
	
}
.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.next:before {
	content: "\f054";
}
.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.prev:hover,
.home_banner > .slider-nav-container > li.slider-nav > .rslides_nav.next:hover {
	opacity: 1;
}
.home_banner > .rslides_tabs {
    position: absolute;
    bottom: 20px;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    margin: 0px;
    padding: 0px;
    display: table;
    visibility: hidden;
}
.home_banner:hover > .rslides_tabs {
	visibility: visible;
	}
.home_banner > .rslides_tabs > li {
    display: table-cell;
    list-style: none;
    margin: 0px;
    padding: 0px 7.5px;
}

.home_banner > .rslides_tabs > li > a {
    width:  15px;
    height: 15px;
    display: block;
    border: 2px solid rgba(266, 266, 266, 0.7);
    border-radius: 10px;
    font-size: 0px;
    position: relative;
    transition: ease 0.3;
    -webkit-transition: ease 0.3;
}
.home_banner > .rslides_tabs > li > a:hover {
	border: 2px solid rgba(266,266,266,1);

	}
.home_banner > .rslides_tabs > li > a:before {
	
}

.home_banner > .rslides_tabs > li.rslides_here > a {
	border: 2px solid rgba(266,266,266,1);
    background: linear-gradient(90deg, #ff6a00, #ee0979);   
}
.home_banner > .rslides_tabs > li.rslides_here > a:before {
	
}
/*--Home Banner--*/

/*--Sub Banner--*/
.sub-banner {
    margin: 0px;
    padding: 0;
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4e6c53, #758b20);
}
.sub-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgb(60 95 66 / 30%);
    /* background-color: rgb(20 46 73 / 30%); */
    /* background-color: rgb(119 141 44 / 30%); */
    /* background-color: rgb(0 18 28 / 50%); */
    /* background-image: url(../images/black-dot-pattern.png); */
    background-repeat: repeat;
    background-attachment: fixed;
    z-index: 1;
}
.sub-banner .banner-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    width: 100%;
}

.sub-banner img {
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transition: ease 3s;
}
.sub-banner.sub-banner-active img {
    transform: scale(1);
}

.sub-banner h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    font-weight: 800;
    margin: 0px auto;
    padding: 0px;
    width: 100%;
    text-align: left;
    text-shadow: 3px 4px 36px #0a1425, 3px 4px 36px #0a1425;
    letter-spacing: 0.5px;
}

.sub-banner h3 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    font-weight: 300;
    margin: 0px auto;
    padding: 0px;
    position: absolute;
    top: calc(50% + 45px);
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
    z-index: 9;
    text-align: left;
}
/*--Sub Banner--*/


/*--Body--*/

.article-container {
	position: relative;
}
.tb_padd1 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.tb_padd2 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.tb_padd3 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.left-content {
    padding-right: 50px;
}
.right-content {
    padding-left: 50px;
}
.v-align-center {
    align-items: center;
}
.row-invert {
    flex-direction: row-reverse;
}

.content-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 10px 20px 40px -30px #000621;
}
.content-img.img-bdr > img {
    border: 1px solid #ffffff;
    border-radius: 20px;
    
}
.content-img.content-img-left.img-shade > img {
    box-shadow: 10px 20px 40px -30px #000621;
}
.content-img.content-img-right.img-shade > img {
    box-shadow: -10px 20px 40px -30px #000621;
}

/*--Body--*/

/*-- Box Design --*/

/* --box container1-- */

.box-container1 {
    margin: 0 !important;
    padding: 0;
    justify-content: center;
}

    .box-container1 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px;
		text-align: center;
    }
    .box-container1 li:hover {
        position: relative;
        z-index: 1;
    }
    .box-container1 li .box-inner-container {
        display: block;
        padding: 50px 30px;
        background: #4e6c53;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
	}

    .box-container1 li:hover .box-inner-container {
        box-shadow: 0px 30px 50px -10px #021009;
        transform: scale(1.06);
    }
    .box-container1 li .box-inner-container:before {
        content: "";
        position: absolute;
        background-color: #ff6000;
        width: 100px;
        height: 20px;
        border-radius: 0px 0px 50px 50px;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        transition: ease 0.5s;
        display: none;
    }

    
    .box-container1 li .box-inner-container:hover:before {
		background-color: #fff;
    }
        .box-container1 li .box-inner-container .box-icon {
            margin: 0 0 30px;
            transition: ease-in-out 0.5s;
            -webkit-transition: ease 0.5s;
        }

        .box-container1 li .box-inner-container .box-icon i {
            font-size: 70px;
            transition: ease 0.5s;
            -webkit-transition: ease 0.5s;
            color: #ff6000;
        }
        .box-container1 li .box-inner-container:hover .box-icon i {
            color: #ffffff;
        }
       
        .box-container1 li .box-inner-container .box-content {

        }
        .box-container1 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px 15px 0px;
            font-size: 40px;
            color: #fff;
            font-weight: 300;
            letter-spacing: 0.5px;
            position: relative;
            font-family: 'Roboto' !important;
            transition: ease 0.5s;
            height: auto !important;
        }
         .box-container1 li .box-inner-container .box-content h4 > span { 
            font-size: 20px;
            padding: 0px 0px 0px 10px;
         }
        .box-container1 li .box-inner-container .box-content p {
            font-size: 20px;
            font-weight: 300;
            color: rgb(255 255 255 / 75%);
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.3px;
            transition: ease 0.5s;
		}
        .box-container1 li .box-inner-container:hover .box-content h4 { color: rgb(255 255 255 / 90%); }
        .box-container1 li .box-inner-container:hover .box-content p { color: rgb(228 234 237 / 90%); }

/* --box container1-- */

/* --box container2-- */

.box-container2 {
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .box-container2 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px 15px 30px;
		text-align: center;
    }
    .box-container2 li .box-inner-container {
        display: block;
        padding: 30px 0px;
        border-radius: 5px;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
        overflow: hidden;
	}
    .box-container2 li .box-inner-container:hover {
        background: #4e6c53;
        border: 0px solid transparent;
        box-shadow: 0px 50px 40px -70px #000621;
        padding: 30px 15px;
        transform: scale(1.06);
    }

        .box-container2 li .box-inner-container .box-icon {
			margin: 0 0 30px;
			transition: ease-in-out 0.5s;
			-webkit-transition: ease 0.5s;
        }

        .box-container2 li .box-inner-container .box-icon i {
            font-size: 60px;
            margin: 0;
            transition: ease 0.5s;
            -webkit-transition: ease 0.5s;
            color: #4e6c53;
            font-weight: 100;
        }
		.box-container2 li .box-inner-container:hover .box-icon i {            		    
            color: #ffffff;
		}
  
        .box-container2 li .box-inner-container .box-content {

        }
        .box-container2 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px 15px 0px;
            font-size: 17px;
            color: #4e6c53;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: ease 0.5s;

        }
        .box-container2 li .box-inner-container .box-content p {
            font-size: 15px;
            font-weight: 400;
            color: #3c4759;
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.5px;
            transition: ease 0.5s;
		}
        .box-container2 li .box-inner-container:hover .box-content h4 {
            color: rgb(255 255 255 / 90%); 
        }
        .box-container2 li .box-inner-container:hover .box-content p { 
            color: rgb(255 255 255 / 90%);
            font-weight: 300; 
        }

        .box-container2 > li > .box-inner-container > .box-content > .readmore-link {
                margin: 30px 0px 0px 0px;
                padding: 0px;
                font-size: 14px;
                color: #151e33;
                
                font-weight: 500;
                line-height: 24px;
                letter-spacing: 0.2px;
                position: relative;
                transition: ease 0.3s;
                display: inline-block;
            }
            .box-container2 > li > .box-inner-container > .box-content > .readmore-link > i {
            	margin: 0px;
            	padding: 0px 0px 0px 5px;
            	transition: ease 0.3s;
            }
            .box-container2 > li > .box-inner-container:hover > .box-content > .readmore-link {
            	color: #ffffff;
            }
            .box-container2 > li > .box-inner-container > .box-content > .readmore-link:hover > i { 
            	padding: 0px 0px 0px 15px;
            }
/* --box container2-- */

/* --box container2-1-- */

.box-container2-1 {
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .box-container2-1 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px 15px 30px;
		text-align: center;
    }
    .box-container2-1 li .box-inner-container {
        display: block;
        padding: 30px 0px;
        border-radius: 5px;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
        overflow: hidden;
	}
    .box-container2-1 li .box-inner-container:hover {
        background: #758b20;
        border: 0px solid transparent;
        box-shadow: 0px 50px 40px -70px #000621;
        padding: 30px 15px;
        transform: scale(1.06);
    }

        .box-container2-1 li .box-inner-container .box-icon {
			margin: 0 0 30px;
			transition: ease-in-out 0.5s;
			-webkit-transition: ease 0.5s;
        }

        .box-container2-1 li .box-inner-container .box-icon i {
            font-size: 60px;
            margin: 0;
            transition: ease 0.5s;
            -webkit-transition: ease 0.5s;
            color: #758b20;
            font-weight: 100;
        }
		.box-container2-1 li .box-inner-container:hover .box-icon i {            		    
            color: #ffffff;
		}
  
        .box-container2-1 li .box-inner-container .box-content {

        }
        .box-container2-1 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px 15px 0px;
            font-size: 17px;
            color: #758b20;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: ease 0.5s;

        }
        .box-container2-1 li .box-inner-container .box-content p {
            font-size: 15px;
            font-weight: 300;
            color: rgb(196 201 225);
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.5px;
            transition: ease 0.5s;
		}
        .box-container2-1 li .box-inner-container:hover .box-content h4 {
            color: rgb(255 255 255 / 90%); 
        }
        .box-container2-1 li .box-inner-container:hover .box-content p { 
            color: rgb(255 255 255 / 90%);
            font-weight: 300; 
        }

        .box-container2-1 > li > .box-inner-container > .box-content > .readmore-link {
                margin: 30px 0px 0px 0px;
                padding: 0px;
                font-size: 14px;
                color: #151e33;
                
                font-weight: 500;
                line-height: 24px;
                letter-spacing: 0.2px;
                position: relative;
                transition: ease 0.3s;
                display: inline-block;
            }
            .box-container2-1 > li > .box-inner-container > .box-content > .readmore-link > i {
            	margin: 0px;
            	padding: 0px 0px 0px 5px;
            	transition: ease 0.3s;
            }
            .box-container2-1 > li > .box-inner-container:hover > .box-content > .readmore-link {
            	color: #ffffff;
            }
            .box-container2-1 > li > .box-inner-container > .box-content > .readmore-link:hover > i { 
            	padding: 0px 0px 0px 15px;
            }
/* --box container2-1-- */

/* --box container3-- */

.box-container3 {
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .box-container3 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px 30px 30px;
		text-align: center;
    }
    .box-container3 li .box-inner-container {
        display: block;
        padding: 0;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
	}
    .box-container3 li .box-inner-container:hover {
    }

        .box-container3 li .box-inner-container .box-image {
            background-image: url(../images/team/team-bg.jpg);
            margin: 0;
            padding: 0px;
            height: 310px;
            overflow: hidden;
            background-size: 100% auto;
            border-radius: 30px;
            /* border-radius: 20px;
            box-shadow: 0px 29px 11px -25px rgb(15 23 45 / 90%);
            border: 1px solid #fff; */
        }

        .box-container3 li .box-inner-container .box-image img {
            margin: 0px;
            padding: 0px;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }

		.box-container3 li .box-inner-container:hover .box-image img {            		    

		}
  
        .box-container3 li .box-inner-container .box-content {
            padding: 10px 0px 0px 0px;
            text-align: center;
        }
        .box-container3 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px;
            font-size: 17px;
            color: #182f40;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: ease 0.5s;
        }
        .box-container3 li .box-inner-container .box-content p {
            font-size: 14px;
            font-weight: 400;
            /* color: #334756; */
            color: #758b20;
            
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.5px;
            transition: ease 0.5s;
		}
        .box-container3 li .box-inner-container:hover .box-content h4 {
            /* color: rgb(255 255 255 / 90%);  */
        }
        .box-container3 li .box-inner-container:hover .box-content p { 
            /* color: rgb(255 255 255 / 90%);
            font-weight: 300;  */
        }

        .box-container3 > li > .box-inner-container > .box-content > .readmore-link {
                margin: 30px 0px 0px 0px;
                padding: 0px;
                font-size: 14px;
                color: #151e33;
                
                font-weight: 500;
                line-height: 24px;
                letter-spacing: 0.2px;
                position: relative;
                transition: ease 0.3s;
                display: inline-block;
            }
            .box-container3 > li > .box-inner-container > .box-content > .readmore-link > i {
            	margin: 0px;
            	padding: 0px 0px 0px 5px;
            	transition: ease 0.3s;
            }
            .box-container3 > li > .box-inner-container:hover > .box-content > .readmore-link {
            	color: #ffffff;
            }
            .box-container3 > li > .box-inner-container > .box-content > .readmore-link:hover > i { 
            	padding: 0px 0px 0px 15px;
            }
/* --box container3-- */

/* --box container4-- */

.box-container4 {
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .box-container4 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px 15px 30px;
		text-align: center;
    }
    .box-container4 li .box-inner-container {
        display: block;
        padding: 0;
        border-radius: 15px;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
        overflow: hidden;
        box-shadow: 10px 10px 25px -20px rgb(0 6 33 / 50%), -10px 10px 25px -20px rgb(0 6 33 / 50%);
	}
    .box-container4 li .box-inner-container:hover {
      
        box-shadow: 0px 50px 40px -40px #000621;
        transform: scale(1.05);
    }

    .box-container4 li:nth-of-type(1) .box-inner-container {
        background-color: rgb(220, 53, 69);
    }
    .box-container4 li:nth-of-type(2) .box-inner-container {
        background-color: rgb(117, 139, 32);
    }
    .box-container4 li:nth-of-type(3) .box-inner-container {
        background-color: rgb(3, 89, 159);
    }

        .box-container4 li .box-inner-container .box-img {
			margin:0;
			transition: ease-in-out 0.5s;
			-webkit-transition: ease 0.5s;
            height: 350px;
            overflow: hidden;
        }

        .box-container4 li .box-inner-container .box-img img {
            width: 100%;
            height: 100%;
            transition: ease 3s;
            object-fit: cover;
            object-position: top;
        }
		.box-container4 li .box-inner-container:hover .box-img img {            		    
            transform: scale(1.3) rotate(-5deg);
		}
  
        .box-container4 li .box-inner-container .box-content {
            padding: 30px;
            text-align: left;
            display: table;
        }
        .box-container4 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px 15px 0px;
            font-size: 24px;
            color: #ffffff !important;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: ease 0.5s;

        }
        .box-container4 li .box-inner-container .box-content h4 > i {
            padding: 0px 10px 0px 0px;
            animation: fa-beat-fade 1s infinite;
        }
        .box-container4 li .box-inner-container .box-content p {
            font-size: 15px;
            font-weight: 300;
            color: #ffffff;
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.5px;
            transition: ease 0.5s;
		}
        .box-container4 li .box-inner-container:hover .box-content h4 {
            color: rgb(255 255 255 / 90%) !important; 
        }
        .box-container4 li .box-inner-container:hover .box-content p { 
            color: rgb(255 255 255 / 90%);
            font-weight: 300; 
        }

        .box-container4 > li > .box-inner-container > .box-content > .readmore-link {
            margin: 30px 0px 0px 0px;
            padding: 10px 15px;
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0.2px;
            position: relative;
            transition: ease 0.3s;
            display: inline-block;
            background-color: rgb(17 25 41 / 50%);
            border-radius: 20px;
            float: right;
            border: none;
        }
            .box-container4 > li > .box-inner-container > .box-content > .readmore-link > i {
            	margin: 0px;
            	padding: 0px 0px 0px 5px;
            	transition: ease 0.3s;
            }
            .box-container4 > li > .box-inner-container:hover > .box-content > .readmore-link {
                background-color: rgb(17 25 41 / 80%);
            	color: #ffffff;
            }
            .box-container4 > li > .box-inner-container > .box-content > .readmore-link:hover > i { 
            	padding: 0px 0px 0px 15px;
            }
/* --box container4-- */

/* --box container4-1-- */

.box-container4-1 {
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .box-container4-1 li {
		list-style: outside none none;
		margin: 0;
		padding: 0px 15px 30px;
		text-align: center;
    }
    .box-container4-1 li .box-inner-container {
        display: block;
        padding: 0;
        border-radius: 15px;
        text-align: center;
        transition: ease 0.5s;
        position: relative;
        overflow: hidden;
        box-shadow: 10px 10px 25px -20px rgb(0 6 33 / 50%), -10px 10px 25px -20px rgb(0 6 33 / 50%);
	}
    .box-container4-1 li .box-inner-container:hover {
      
        box-shadow: 0px 50px 40px -40px #000621;
        transform: scale(1.05);
    }



        .box-container4-1 li .box-inner-container .box-img {
			margin:0;
			transition: ease-in-out 0.5s;
			-webkit-transition: ease 0.5s;
            height: 350px;
            overflow: hidden;
        }

        .box-container4-1 li .box-inner-container .box-img img {
            width: 100%;
            transition: ease 3s;
        }
		.box-container4-1 li .box-inner-container:hover .box-img img {            		    
            transform: scale(1.3) rotate(-5deg);
		}
  
        .box-container4-1 li .box-inner-container .box-content {
            padding: 30px;
            text-align: left;
            display: table;
        }
        .box-container4-1 li .box-inner-container .box-content h4 {
            margin: 0px;
            padding: 0px 0px 10px 0px;
            font-size: 35px;
            line-height: 28px;
            color: #ffffff !important;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: ease 0.5s;
            font-family: 'Roboto' !important;
        }
        .box-container4-1 li .box-inner-container .box-content h4 > span {
            font-size: 17px;
            font-weight: 300;
            padding: 0px 0px 0px 5px;
        }
        .box-container4-1 li .box-inner-container .box-content h4 > i {
            padding: 0px 10px 0px 0px;
            animation: fa-beat-fade 1s infinite;
        }
        .box-container4-1 li .box-inner-container .box-content p {
            font-size: 17px;
            font-weight: 300;
            color: #ffffff;
            line-height: 24px;
            margin: 0;
            padding: 0px;
            letter-spacing: 0.5px;
            transition: ease 0.5s;
		}
        .box-container4-1 li .box-inner-container:hover .box-content h4 {
            color: rgb(255 255 255 / 90%) !important; 
        }
        .box-container4-1 li .box-inner-container:hover .box-content p { 
            color: rgb(255 255 255 / 90%);
            font-weight: 300; 
        }

        .box-container4-1 > li > .box-inner-container > .box-content > .readmore-link {
            margin: 30px 0px 0px 0px;
            padding: 10px 15px;
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0.2px;
            position: relative;
            transition: ease 0.3s;
            display: inline-block;
            background-color: rgb(17 25 41 / 50%);
            border-radius: 20px;
            float: right;
        }
            .box-container4-1 > li > .box-inner-container > .box-content > .readmore-link > i {
            	margin: 0px;
            	padding: 0px 0px 0px 5px;
            	transition: ease 0.3s;
            }
            .box-container4-1 > li > .box-inner-container:hover > .box-content > .readmore-link {
                background-color: rgb(17 25 41 / 80%);
            	color: #ffffff;
            }
            .box-container4-1 > li > .box-inner-container > .box-content > .readmore-link:hover > i { 
            	padding: 0px 0px 0px 15px;
            }
/* --box container4-1-- */

/*-- Box Design --*/

/*--accordion Slider--*/

.accordion-container {
    margin: 0px;
    padding: 30px 0px 0px 0px;
    max-width: 768px;
    margin: 0px auto;
}
.accordion-container > li {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
}
.accordion-container > li:last-child {
    padding-bottom: 0px;
}
.accordion-container > li > .accordion-content {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
.accordion-container > li > .accordion-content > .accordion-head {
    margin: 0px;
    padding: 20px 45px 20px 20px;
    position: relative;
    cursor: pointer;
    transition: ease 0.3s;
    border-bottom: 1px dotted #4970ad;
}

.accordion-container > li > .accordion-content > .accordion-head::before {
    content: "\f078";
    margin: 0px;
    padding: 0px;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    position: absolute;
    right: 15px;
    top: 15px;
    color: rgb(255 255 255 / 80%);
    transition: ease 0.3s;
}
.accordion-container > li > .accordion-content:hover > .accordion-head {
    transform: scale(1.03);
}

.accordion-container > li > .accordion-content:hover > .accordion-head,
.accordion-container > li.active > .accordion-content > .accordion-head { 
    border-bottom: 1px dotted #86abe5;
}
.accordion-container > li > .accordion-content:hover > .accordion-head::before {
    color: #ffffff;
}
.accordion-container > li.active > .accordion-content > .accordion-head::before {
    color: #ffffff;
    transform: rotate(-180deg);
}


.accordion-container > li > .accordion-content > .accordion-head > h4 {
margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: ease 0.3s;
    color: rgb(255 255 255 / 60%);
}
.accordion-container > li > .accordion-content:hover > .accordion-head > h4,
.accordion-container > li.active > .accordion-content > .accordion-head > h4 {
    color: #fff;
}
.accordion-container > li > .accordion-content > .accordion-body {
    margin: 0px;
    padding: 0px;
    display: none;
}
.accordion-container > li > .accordion-content > .accordion-body > .accordion-body-content {
    padding: 20px;
}
.accordion-container > li > .accordion-content > .accordion-body > .accordion-body-content > p {
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    transition: ease 0.5s;
    color: #ffffff;
}
.accordion-container > li > .accordion-content > .accordion-body > .accordion-body-content > p > a {
    color: #04c3ff;
    font-weight: 500;
}
.accordion-container > li > .accordion-content > .accordion-body > .accordion-body-content > p > a:hover {
    text-decoration: underline !important;
}
/*--accordion Slider--*/

/*--accordion Slider1--*/

.accordion-container1 {
    margin: 0px;
    padding: 0px;
}
.accordion-container1 > li {
    margin: 0px;
    padding: 0px 0px 10px 0px;
    list-style: none;
}
.accordion-container1 > li:last-child {
    padding-bottom: 0px;
}
.accordion-container1 > li > .accordion-content {
    margin: 0px;
    padding: 0px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;    
    box-shadow: 0px 0px 20px -14px #000621;
    overflow: hidden;
}
.accordion-container1 > li > .accordion-content > .accordion-head {
    margin: 0px;
    padding: 18px 45px 18px 18px;
    position: relative;
    cursor: pointer;
    transition: ease 0.3s;
}

.accordion-container1 > li > .accordion-content > .accordion-head::before {
    content: "\f078";
    margin: 0px;
    padding: 0px;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #4e629d;
    transition: ease 0.3s;
}

.accordion-container1 > li > .accordion-content:hover > .accordion-head,
.accordion-container1 > li.active > .accordion-content > .accordion-head { 
    background-color: #4e6c53;
}
.accordion-container1 > li > .accordion-content:hover > .accordion-head::before {
    color: #ffffff;
}
.accordion-container1 > li.active > .accordion-content > .accordion-head::before {
    color: #ffffff;
    transform: rotate(-180deg);
}

.accordion-container1 > li > .accordion-content > .accordion-head > .ques-icon {
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 18px;
    background-color: #4c597d;
    color: #fff;
    font-style: normal;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    transition: ease 0.3s;
}

.accordion-container1 > li > .accordion-content:hover > .accordion-head > .ques-icon,
.accordion-container1 > li.active > .accordion-content > .accordion-head > .ques-icon  {
    background-color: #ffffff;
    color: #4c597d;
}

.accordion-container1 > li > .accordion-content > .accordion-head > h4 {
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    transition: ease 0.3s;
    color: rgb(10 24 35);
}
.accordion-container1 > li > .accordion-content:hover > .accordion-head > h4,
.accordion-container1 > li.active > .accordion-content > .accordion-head > h4 {
    color: #fff;
}
.accordion-container1 > li > .accordion-content > .accordion-body {
    margin: 0px;
    padding: 0px;
    display: none;
}
.accordion-container1 > li > .accordion-content > .accordion-body > .accordion-body-content {
    padding: 30px;
    border-top: 1px solid #e2e2e2;
}
.accordion-container1 > li > .accordion-content > .accordion-body > .accordion-body-content > p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: ease 0.5s;
    color: var(--txt-p--color);
}

/*--accordion Slider1--*/

/*-- donation box popup --*/
    body.popup-active {
        overflow: hidden;
    }
	.donation-box {
        position: fixed;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: none;
    }
    .donation-box.popup-box-active {
        display: block;
    }
    .donation-box:before {
        content: "";
        background-color: rgb(14 20 34 / 80%);
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        transform: 1s;
    }
	.donation-box > .donation-box-container { 
        position: absolute;
        width: 380px;
        background-color: #ffffff;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);     
        transition: ease 0.5s;
    }
    .donation-box.active-popbox-contaner > .donation-box-container { 
        transform: translate(-50%, -50%) scale(1);
    }
	.donation-box > .donation-box-container > .donation-box-content { 

    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-head  { 
        padding: 40px;
    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-head > .popup-logo {
        width: 250px;
        margin: 0px auto;
    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-head > .popup-logo > img {
        width: 100%;
    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-head > .popup-close { 
        position: absolute;
        top: 15px;
        right: 30px;
        font-size: 24px;
        font-weight: 100;
        color: #99a99c;
        border: none;
        cursor: pointer;
        transition: ease 0.5s;
        background-color: transparent;
        
    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-head > .popup-close:hover { 
        color: #607163;
        transform: scale(1.03);
    }
    .donation-box > .donation-box-container > .donation-box-content > .popup-body {}
    .donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container {
        padding: 0px 40px 40px;
        text-align: center;
    }
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > h3 {
        font-size: 38px;
        font-weight: 700;
        line-height: 40px;
        margin: 0;
        padding: 0px 0px 15px 0px;
        letter-spacing: 0.3px;
        color: #4e6c53;
     } 
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > h4 {
        font-size: 17px;
        font-weight: 700;
        color: #436348;
        line-height: 24px;
        margin: 0;
        padding: 30px 0px 30px 0px;
        letter-spacing: 1px;
     } 

     .donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > h4 > .upi-icon {
        width: 40px;
     }
     
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > p {
        font-size: 17px;
        font-weight: 400;
        color: #182640;
        line-height: 24px;
        margin: 0;
        padding: 0px 0px 30px 0px;
        letter-spacing: 0.5px;
     } 
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > .qr-code-container { 
        height: 200px;
    } 
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > .qr-code-container > img { 
        height: 100%;
    } 
	.donation-box > .donation-box-container > .donation-box-content > .popup-body > .donation-container > h5 { 
        font-size: 26px;
        font-weight: 800;
        line-height: 32px;
        margin: 0;
        padding: 0px;
        letter-spacing: 0.3px;
        color: #748a1e;
    } 
 /*-- donation box popup --*/

/*-- popup box--*/
    body.popup-active {
        overflow: hidden;
    }
	.popup-box {
        position: fixed;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: none;
    }
    .popup-box.popup-box-active {
        display: block;
    }
    .popup-box:before {
        content: "";
        background-color: rgb(14 20 34 / 80%);
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        transform: 1s;
    }
	.popup-box > .popup-box-container { 
        position: absolute;
        width: 380px;
        background-color: #ffffff;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);     
        transition: ease 0.5s;
    }
    .popup-box.active-popbox-contaner > .popup-box-container { 
        transform: translate(-50%, -50%) scale(1);
    }
	.popup-box > .popup-box-container > .popup-box-content { 

    }
	.popup-box > .popup-box-container > .popup-box-content > .popup-head  { 
        padding: 30px 50px;
        background: linear-gradient(108deg, rgb(57 87 62) 0%, rgb(85 97 39) 100%);
    }

 

	.popup-box > .popup-box-container > .popup-box-content > .popup-head > h3  { 
        font-size: 30px;
        font-weight: 300;
        line-height: 30px;
        margin: 0;
        padding: 0px 0px;
        letter-spacing: 0.3px;
        color: #ffffff;
    }
    .popup-box > .popup-box-container > .popup-box-content > .popup-head > h3 > i { 
        font-size: 40px;
        padding-right: 10px;
        color: #c4eb33;
    }

	.popup-box > .popup-box-container > .popup-box-content > .popup-head > .popup-close { 
        position: absolute;
        top: 15px;
        right: 30px;
        font-size: 30px;
        font-weight: 100;
        color: rgb(255 255 255 / 50%);
        cursor: pointer;
        transition: ease 0.5s;
        border: none;
        background-color: transparent;
    }
	.popup-box > .popup-box-container > .popup-box-content > .popup-head > .popup-close:hover { 
        color: #ffffff;
        transform: scale(1.03);
    }
    .popup-box > .popup-box-container > .popup-box-content > .popup-body {}
    .popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container {
        padding: 30px 50px;
    }
	.popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container > h3 {
        font-size: 38px;
        font-weight: 700;
        line-height: 40px;
        margin: 0;
        padding: 0px 0px 15px 0px;
        letter-spacing: 0.3px;
        color: #4e6c53;
     } 
	.popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container > h4 {
        font-size: 17px;
        font-weight: 700;
        color: #436348;
        line-height: 24px;
        margin: 0;
        padding: 30px 0px 30px 0px;
        letter-spacing: 1px;
     } 

     .popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container > h4 > .upi-icon {
        width: 40px;
     }
     
	.popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container > p {
        font-size: 17px;
        font-weight: 400;
        color: #4f6d51;
        line-height: 24px;
        margin: 0;
        padding: 0px 0px 30px 0px;
        letter-spacing: 0.5px;
     } 
	 
	.popup-box > .popup-box-container > .popup-box-content > .popup-body > .popup-container > h5 { 
        font-size: 26px;
        font-weight: 800;
        line-height: 32px;
        margin: 0;
        padding: 0px;
        letter-spacing: 0.3px;
        color: #748a1e;
    } 


.popup-box .form-container > li > .label-field > label {
    color: #182640;
    font-weight: 700;
}
.popup-box .form-container > li {
    padding-bottom: 15px;
}
 /*-- Popup Box --*/

 /*-- Video Popup --*/
 body.popup-active {
     overflow: hidden;
 }

 .video-preview {
     position: fixed;
     top: 0px;
     left: 0px;
     width: 100%;
     height: 100%;
     z-index: 99999;
     display: none;
 }

 .video-preview.popup-box-active {
     display: block;
 }

    .video-preview:before {
        content: "";
        background-color: rgb(14 20 34 / 80%);
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        transform: 1s;
    }

 .video-preview > .video-preview-container {
    position: absolute;
    width: 760px;
    height: 480px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: ease 0.5s;
 }

 .video-preview.active-popbox-contaner > .video-preview-container {
     transform: translate(-50%, -50%) scale(1);
 }

 .video-preview > .video-preview-container > .video-preview-content {
    width: 100%;
    height: 100%;
 }

 .video-preview > .video-preview-container > .video-preview-content > .popup-close {
    position: fixed;
    top: -40px;
    right: -40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    border: none;
    background: transparent;
 }

 .video-preview>.video-preview-container>.video-preview-content>.popup-close:hover {
     color: #ffffff;
     transform: scale(1.03);
 }

 .video-preview>.video-preview-container>.video-preview-content>.video-iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden
 }

 .video-preview>.video-preview-container>.video-preview-content>.video-iframe>iframe {
    width: 100%;
    height: 100%;
 }

 /*-- Video Popup --*/

/*--Contact Details--*/
.contact-details-list {
    margin: 0px;
    padding: 0px;
}
.contact-details-list > li {
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 30px;
    list-style: none;
}
.contact-details-list > li:last-child {
    padding-bottom: 0px;
	}
.contact-details-list > li > .contact-detail-content {
    margin: 0px;
    padding: 10px 0px 0px 55px;
    position: relative;
}
.contact-details-list > li > .contact-detail-content > i  {
    background-color: #5394f7;
    color: #fff;
    margin: 0px;
    padding: 12px;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0px;
    top: 0px;
    bottom: 15px;
    font-size: 17px;
    font-weight: 300;
    border-radius: 100%;
    text-align: center;
}
.contact-details-list > li > .contact-detail-content > h4 {
    font-size: 18px;
    color: #5394f7;
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 15px 0px;
    letter-spacing: 1px;
}
.contact-details-list > li > .contact-detail-content > h5 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 15px 0px;
    letter-spacing: 1px;
}

.contact-details-list > li > .contact-detail-content > a {
    color: #a8b3c5;
    font-size: 15px;
    margin: 0;
    padding: 0px 0px 5px 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 300;
    position: relative;
    display: block;
}
.contact-details-list > li:last-child > .contact-detail-content > a {
    padding-bottom: 0px;
}
.contact-details-list > li > .contact-detail-content > p {
    color: #a8b3c5;
    font-size: 15px;
    margin: 0;
    padding: 0px 0px 5px 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 300;
    position: relative;
    display: block;
}

.contact-details-list1 {
    margin: 0px;
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;    
}
.contact-details-list1 > li {
    margin: 0px;
    padding: 0px 100px 15px 0px;
    list-style: none;
}
.contact-details-list1 > li:last-child {
    padding-bottom: 0px;
    padding-right: 0px;
	}
.contact-details-list1 > li > .contact-detail-content {
    margin: 0px;
    padding: 5px 0px 0px 57px;
    position: relative;
    display: flex;
    align-items: center;
}
.contact-details-list1 > li > .contact-detail-content > i  {
    color: #ffffff;
    margin: 0px;
    padding: 0;
    position: absolute;
    width: 38px;
    height: 38px;
    left: 0px;
    top: 0px;
    bottom: 15px;
    font-size: 30px;
    font-weight: 100;
    border-radius: 100%;
    text-align: center;
}
.contact-details-list1 > li > .contact-detail-content > h4 {
    font-size: 20px;
    color: rgb(255 255 255 / 60%);
    font-weight: 300;
    margin: 0px;
    padding: 0 10px 0px 0px;
    letter-spacing: 1px;
}
.contact-details-list1 > li > .contact-detail-content > p {
    color: rgb(255 255 255 / 100%);
    font-size: 20px;
    margin: 0;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    display: block;
}
.contact-details-list1 > li > .contact-detail-content > a {
    color: rgb(255 255 255 / 100%);
    font-size: 20px;
    margin: 0;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    display: block;
}
.contact-details-list1 > li:last-child > .contact-detail-content > a {
    padding-bottom: 0px;
}
/*--Contact Details--*/

/*--Contact Form--*/

.contactus-form-container {
    margin: 0px;
    padding: 0px 50px 0px 100px;
    border-left: 1px solid rgb(155 187 235 / 30%);
}
.contactus-form-container > h3{
    margin: 0px;
    padding: 0px 0px 10px 0px;
    font-size: 30px;
    color: #ffffff;
    display: block;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.contactus-form-container > p {
    font-size: 16px;
    color: #c9d7cb !important;
    margin: 0px;
    padding: 0px 0px 30px 0px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.contactus-form-container > .form-content {
    margin: 0px;
    padding: 0px;
}
/*--Contact Form--*/

/*--Form Design --*/

.form-container {
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px
}
.form-container > li {
    padding-top: 0px;
    padding-bottom: 30px;
    margin: 0px;
    list-style: none;
}
.form-container > li:last-child {
    padding-bottom: 0px;
}
.form-container > li > .label-field {
	margin: 0px;
	padding: 0px 0px 10px 0px;
}
.form-container > li > .label-field > label {
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    letter-spacing: 0.5px;
    /* font-family: 'Raleway', sans-serif !important; */
}
.form-container > li > .label-field > label > span {
    color: #cb6060;
    padding-left: 5px;
}
.form-container > li > .input-field {
	margin: 0px;
	padding: 0px;
    position: relative;
}
/*--Input Field--*/
/* input 1 */
.input-text {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
    background-color: transparent;
    border: 1px solid rgb(78 99 81);
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    letter-spacing: 0.5px;
}

.input-select {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
    background-color: transparent;
    border: 1px solid rgb(78 99 81);
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    letter-spacing: 0.5px;
}
.input-select option {
    background-color: #273b2a;
     border: 1px solid rgb(78 99 81);
    color: #a8b3c5;
    letter-spacing: 0.5px;
}

.input-textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
    background-color: transparent;
    border: 1px solid rgb(78 99 81);
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    height: 100px;
    letter-spacing: 0.5px;
}

.input-text:hover, .input-text:focus,
.input-select:hover, .input-select:focus,
.input-textarea:hover, .input-textarea:focus {
    box-shadow: 0px 0px 10px -4px rgb(78 99 81) inset;
    border: 1px solid rgb(76 121 82);
}

.input-text, .input-select, .input-textarea {
    outline: none;
}
.input-text::placeholder, .input-select::placeholder, .input-textarea::placeholder {
    color: rgb(255 255 255 / 50%);
}

.input-text.field-required , .input-select.field-required, .input-textarea.field-required,
.input-text.field-invalid , .input-select.field-invalid, .input-textarea.field-invalid {
    border-color: #cb6060;
    /* background-color: rgb(203 96 96 / 50%); */
    color: rgb(255 255 255 / 70%);
    font-weight: 300;
    box-shadow: 0px 0px 110px 0px rgb(203 96 96 / 50%) inset;
}

/* input 1 */

/* input 2 */
.input-text1 {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: #182640;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid #cfcfcf;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    letter-spacing: 0.5px;
    border-radius: 10px;
}

.input-select1 {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: #182640;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid #cfcfcf;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    letter-spacing: 0.5px;
    border-radius: 10px;
}
.input-select1 option {
    background-color: #273b2a;
     border: 1px solid #cfcfcf;
    color: #a8b3c5;
    letter-spacing: 0.5px;
}

.input-textarea1 {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    color: #182640;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid #cfcfcf;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    height: 100px;
    letter-spacing: 0.5px;
    border-radius: 10px;
}

.input-text1:hover, .input-text1:focus,
.input-select1:hover, .input-select1:focus,
.input-textarea1:hover, .input-textarea1:focus {
    border: 1px solid rgb(76 121 82);
}

.input-text1, .input-select1, .input-textarea1 {
    outline: none;
}
.input-text1::placeholder, .input-select1::placeholder, .input-textarea1::placeholder {
    color: rgb(255 255 255 / 50%);
}

.input-text1.field-required , .input-select1.field-required, .input-textarea1.field-required,
.input-text1.field-invalid , .input-select1.field-invalid, .input-textarea1.field-invalid {
    border-color: #ae4444;
    /* background-color: rgb(151 44 86 / 20%); */
    color: rgb(125 18 18);
    font-weight: 300;
    box-shadow: 0px 0px 110px 0px rgb(151 44 86 / 20%)  inset;
}
/* input 2 */




input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

    input[type=number] {
      -moz-appearance: textfield; /* Firefox */
    }

    
input.input-text:-webkit-autofill,
input.input-text:-webkit-autofill:focus,
select.input-select:-webkit-autofill,
textarea.input-textarea:-webkit-autofill,
select.input-textarea:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: rgb(255 255 255 / 80%) !important;
    transition: background-color 9999s ease-in-out 0s;
}

input.input-text1:-webkit-autofill,
input.input-text1:-webkit-autofill:focus,
select.input-select1:-webkit-autofill,
textarea.input-textarea1:-webkit-autofill,
select.input-textarea1:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #182640 !important;
    transition: background-color 9999s ease-in-out 0s;
}


.submit-btn {
    background-color:#2ea854;
    margin: 0px 50px 0px 0px;
    padding: 13px 30px;
    display: table;
    font-size: 17px;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif !important;
    border: none;
    border-radius: 5px;
    height: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}
.submit-btn > i { 
    font-style: normal;
    position: relative;
}
.submit-btn:hover {
    background-color: #0b6628;
    color: rgb(255 255 255 / 100%);
    font-weight: 300;
}
.submit-btn:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255 255 255 / 15%);    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
     transition: ease .5s;
}
.submit-btn:hover:before {
    background-color: rgb(255 255 255 / 15%);
    width: 400px;
    height: 400px;
}

.submit-btn:disabled, .submit-btn:disabled:hover, .submit-btn:disabled:focus {
    background: rgb(107 109 111 / 50%);
    color: rgb(255 255 255 / 30%);
    filter: grayscale(1) brightness(1.4);
    cursor: not-allowed;
}

.errormsg {
    font-size: 12px;    
    color: #e15252;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: absolute;
    left: 0px;
    top: calc(100%);
}
/*--Input Field --*/
/*--Form Design --*/

/*--Button Design--*/
.demo-btn {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    margin: 0px;
    padding: 13px 30px;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif !important;
    border: none;
    border-radius: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}
.demo-btn > i { 
    font-style: normal;
    position: relative;
}
.demo-btn:hover {
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    color: rgb(255 255 255 / 100%);
    font-weight: 300;
}
.demo-btn:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255 255 255 / 15%);    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
     transition: ease .5s;
}
.demo-btn:hover:before {
    background-color: rgb(255 255 255 / 0%);
    width: 400px;
    height: 400px;
}

.btn-design{
    margin: 0px;
    padding: 13px 30px;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: rgb(255 255 255 / 80%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif !important;
    border: none;
    border-radius: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}
.btn-design> i { 
    font-style: normal;
    position: relative;
    padding: 0px 15px 0px 0px;
}
.btn-design> span > i { 
    font-style: normal;
    position: relative;
    padding: 0px 10px 0px 0px;
}
.btn-design:hover {
    color: rgb(255 255 255 / 100%);
}
.btn-design:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255 255 255 / 15%);    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
     transition: ease .5s;
}
.btn-design:hover:before {
    background-color: rgb(255 255 255 / 0%);
    width: 400px;
    height: 400px;
}


.spotify-btn-design {
    background-color: #12182b;
    font-family: 'Raleway', sans-serif !important;
    position: relative;
    padding: 0;
    margin: 0px;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    transition: ease 0.5s;
}
.spotify-btn-design:hover {
    transform: scale(1.05);
}
.spotify-btn-design > span { 
    margin: 0px;
    padding: 20px 30px 20px 106px;
    position: relative;
    font-size: 17px;
    color: #f1f3f3;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 27px;
    display: block;
}
.spotify-btn-design > span > i { 
    color: #1dd05d;
    position: absolute;
    font-size: 58px;
    left: 30px;
}

.spotify-btn-design > span > span {
    font-size: 30px;
    color: #1dd05d;
    letter-spacing: 1px;
    display: block;
    line-height: 32px;
    transition: ease 0.5s;
}

.spotify-btn-design:hover > span > span {
    color: #fff;
}

.spotify-btn-design:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255 255 255 / 15%);    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
     transition: ease .5s;
}
.spotify-btn-design:hover:before {
    background-color: rgb(255 255 255 / 0%);
    width: 400px;
    height: 400px;
}
/*--Button Design--*/

/*--Button Color--*/

.orange-grad-btn {background: linear-gradient(90deg, #ff6a00, #ee0979);}
.orange-grad-btn:hover {background: linear-gradient(90deg, #ee0979, #ff6a00);}

.blue-grad-btn {background: linear-gradient(135deg, #531a7a, #00227b);}
.blue-grad-btn:hover {background: linear-gradient(135deg, #00227b, #531a7a);}

.pink-grad-btn {background: linear-gradient(135deg, rgb(164 32 132), rgb(140 5 172));}
.pink-grad-btn:hover {background: linear-gradient(135deg, rgb(140 5 172), rgb(164 32 132));}

/*--Button Color--*/

/*--footer--*/

footer {
    /* background-color: #001327; */
    background-color: #151c16;
    margin: 0px;
    /* border-top: 1px solid #0374c5; */
}
.foot-logo {
    width: 150px;
    margin: 0px;
    padding: 0px 0px 15px 0px;
}
.foot-text {
    font-size: 14px;
    color: #A8BFD0;
    font-weight: 300;
    line-height: 22px;
    margin: 0px;
    padding: 0px 0px 15px 0px;
}
.desclimer-text {
    font-size: 17px;
    color: #2ea854;
    font-weight: 300;
    line-height: 22px;
    margin: 0px;
    padding: 15px 0px 15px 0px;
    letter-spacing: 0.5px;
}
.bottom_phone_number {
	display: table;
	margin: 0;
	padding: 0;
}
.bottom_phone_number li {
	list-style: outside none none;
	margin: 0;
	padding: 0px 0px 15px 0px;
}
.bottom_phone_number li:last-child {
	padding-bottom: 0px;
}
.bottom_phone_number li a  {
    color: #A8BFD0;
    font-size: 15px;
    margin: 0;
    padding: 0 0 0 32px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 300;
    position: relative;
    display: block
}
.bottom_phone_number li a:hover {
	color: #758b20;
}
.bottom_phone_number li a i  {
color: #758b20;
    margin: 0px;
    padding: 0;
    position: absolute;
    left: 0px;
    top: 4px;
    font-size: 17px;
}
.bottom_phone_number li p {
    font-weight: 600;
    color: #FFF;
    margin: 0px;
    padding: 0px 0px 10px 0px;
}
.footer_social {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 0px 30px 0px;
}
.footer_social li {
	list-style: outside none none;
	margin: 0;
	padding: 0 20px 0px 0px;
}
.footer_social li:last-child {
	padding-right: 0px;
}
.footer_social li a {
	color: #ffffff;
	display: block;
	font-size: 20px;
	margin: 0;
	padding: 0;
}
.footer_social li a:hover {
	/* color: #0789c1; */

	}
.footer_social li a i {
	margin: 0px;
	padding: 0px;
}
.footer_social li.facebook {
}
.footer_social li.twitter {
}
.footer_social li.instagram {
	
}
.footer_social li.instagram a {
	line-height: 20px;
}
.footer_social li.instagram:hover a {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-clip: text;
    color: transparent;
}
.footer_social li.linkedin a {
    font-size: 21px;
    line-height: 16px;
}
.footer_social li.linkedin:hover a {
    color: #0077B5;
}

.footer_social li.youtube a {
    font-size: 23px;
    line-height: 16px;
}
.footer_social li.youtube:hover a {
    color: #FF0000;
}

.footer_social li.facebook a {
    font-size: 23px;
    line-height: 16px;
}
.footer_social li.facebook:hover a {
    color: #1877F2;
}


.footer_social li.twitter a {
    font-size: 23px;
    line-height: 16px;
}
.footer_social li.twitter:hover a {
    color: #1DA1F2;
}


.footer_menu {
	display: block;
	margin: 0px;
	padding: 0;
}
.footer_menu li {
    list-style: outside none none;
    margin: 0;
    padding: 0px 0px 15px 0px;
}
.footer_menu li:last-child {
	padding-right: 0px;
	border: 0px;
}
.footer_menu li a {
	color: #A8BFD0;
	font-size: 15px;
	font-weight: 300;
	position: relative;
	padding: 0px 0px 0px 25px;
    letter-spacing: 0.5px;
}
.footer_menu li a:hover {
	color: #758b20;
}
.footer_menu li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    border-left: 7px solid #A8BFD0;
    border-top: 7px solid transparent;
    border-bottom: 5px solid transparent;
}
.footer_menu li a:hover::before {
    border-left: 7px solid #758b20;
}
footer .footer-bottom {
    border-top: 1px solid #263629;
}
footer .footer-bottom .footer-bottom-content {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 15px 0px;
}
footer .footer-bottom .footer-bottom-content .copyrights,
footer .footer-bottom .footer-bottom-content .poweredby {
	margin: 0px;
    padding: 0px;
    font-size: 13px;
    color: #A8BFD0;
    font-weight: 300;
    letter-spacing: 0.5px;
}
footer .footer-bottom .footer-bottom-content .copyrights {

}
footer .footer-bottom .footer-bottom-content .poweredby  {

}
footer .footer-bottom .footer-bottom-content .copyrights strong,
footer .footer-bottom .footer-bottom-content .poweredby strong {
	color: #758b20;
	}

/*--footer--*/



/*--Gallery--*/
.gallery {
    list-style: none;
    padding: 0;
    margin-left: -1px !important;
    margin-right: -1px !important;
}
.gallery li {
    cursor: pointer;
    margin: 0px;
    padding: 1px;
}
.gallery > li > div {  
    height: 150px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    position: relative;
}
.gallery.gallery-page > li > div { 
    height: 210px;
}
.gallery > li > div::before { 
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgb(0 18 28 / 15%);
    z-index: 1;
}
.gallery > li > div > img {  
height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease 0.8s;
    -webkit-transition: ease 0.8s;
    filter: grayscale(95%);
    opacity: 0.9;
}

.gallery > li > div:hover > img {
    filter: grayscale(0%);
	opacity: 1;
}

.gallery.gallery-page > li > div:hover > img {
    filter: grayscale(0%);
}

.gallery li:nth-of-type(odd) div:hover img {
	transform: scale3d(1.2, 1.2, 1.2) rotate(-5deg);
	-webkit-transform: scale3d(1.2, 1.2, 1.2) rotate(-5deg);
}
.gallery li:nth-of-type(even) div:hover img {
	transform: scale3d(1.2, 1.2, 1.2) rotate(5deg);
	-webkit-transform: scale3d(1.2, 1.2, 1.2) rotate(5deg);
}

/* Preview / Lightbox */
.preview-container {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.preview-container img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 4px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.preview-container .prev {
    left: 0px;
}
.preview-container .next {
    right: 0px;
}

.preview-container .prev, 
.preview-container .next {
    background: #080d18;
    border: none;
    font-size: 35px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.5;
    position: absolute;
    color: #fff;
    font-weight: 100;
}
.preview-container .prev:disabled,
.preview-container .next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    display: none;
}

/* .gallery-section-container {
    position: relative;
}
.gallery-section-container::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 54px;
    width: 100%;
    box-shadow: 0px 10px 20px -10px rgb(10 19 32 / 40%);
} */
/*--Gallery--*/


/* --Video Gallery--*/
.video-gallery {
    padding: 0px;
}
.video-gallery > li {
    padding-bottom: 15px;
    margin: 0px;
    list-style: none;
}

.video-gallery > li > div.video-thumb {
    margin: 0px;
    padding: 0px;
}

.video-gallery > li > div.video-thumb > .video-thumb-img {
    height: 172px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-gallery > li > div.video-thumb > .video-thumb-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgb(0 12 34 / 55%);
    transition: ease 0.3s;
}
.video-gallery > li > div.video-thumb:hover > .video-thumb-img:before {
    background: rgb(0 12 34 / 65%);
    backdrop-filter: blur(4px);
}

.video-gallery > li > div.video-thumb > .video-thumb-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video-gallery > li > div.video-thumb > .video-thumb-img .video-play-btn {
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    color: rgb(255 255 255 / 70%); 
    font-size: 50px;
    font-weight: 100;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: ease 0.3s;
    cursor: pointer;
}
.video-gallery > li > div.video-thumb:hover > .video-thumb-img .video-play-btn { 
    color: rgb(255 255 255 / 100%);
    animation: fa-beat-fade 1s infinite
}
.video-gallery > li > div.video-thumb > .video-thumb-img .video-play-btn:hover { 
    font-weight: 500;
    animation: none;
}
.video-gallery > li > div.video-thumb > .video-thumb-title {
    margin: 0px;
    padding: 10px 0px 0px;
    font-size: 15px;
    color: #182f40;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    font-family: 'Roboto' !important;
}

/* .video-gallery > li > div > .video-gallery {} */
/* --Video Gallery--*/
/*--Tab--*/
.tabs {
  width: 100%;
}

.tab-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 70px;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0px 10px 20px -15px rgb(10 19 32 / 40%);
}

.tab-links li {
    margin: 0;
}

.tab-links a {
    text-decoration: none;
    padding: 15px 30px;
    margin: 0px 0px -1px 0px;
    display: block;
    color: #4a5261;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.tab-links .active a {
    font-weight: 300;
    background-color: #829634;
    color: rgb(255 255 255 / 80%);
}
.tab-links .active a:hover { 
    color: rgb(255 255 255 / 80%);
}

.tab-links a:hover {
    color: #829634;
}

.tab-links a:before { 
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #829634;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    width: 0px;
}
.tab-links a:hover:before { 
    width: 100%;
}

.tab-links a > i {
    padding-right: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #182640;
    position: relative;
    bottom: -2px;
    transition: 0.3s;
}
.tab-links a:hover > i { 
    color: #4e6c53;
}
.tab-links .active a > i {
    color: rgb(255 255 255 / 80%);
}
.tab-links .active a:hover > i { 
    color: rgb(255 255 255 / 80%);
}
.tab-content .tab {
  display: none;
  padding: 15px 0;
}

.tab-content .active {
  display: block;
}
/*--Tab--*/
/*--Popup Social--*/
.popup_social {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 15px 0px 30px 0px;
    justify-content: center;
}
.popup_social li {
	list-style: outside none none;
	margin: 0;
	padding: 0 20px 0px 0px;
}
.popup_social li:last-child {
	padding-right: 0px;
}
.popup_social li a {
	color: #ffffff;
	display: block;
	font-size: 20px;
	margin: 0;
	padding: 0;
    transition: ease 0.3s;
}
.popup_social li a:hover {
	/* color: #0789c1; */
    transform: scale(1.03);
	}
.popup_social li a i {
	margin: 0px;
	padding: 0px;
}
.popup_social li.facebook {
}
.popup_social li.linkedin {
}
.popup_social li.instagram {
	
}
.popup_social li.instagram a {
    font-size: 28px;
	line-height: 20px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-clip: text;
    color: transparent;
}

.popup_social li.linkedin a {
    font-size: 28px;
    line-height: 16px;
    color: #0077B5;
}

.popup_social li.youtube a {
    font-size: 23px;
    line-height: 16px;
    color: #FF0000;
}

.popup_social li.facebook a {
    font-size: 21px;
    line-height: 26px;
     color: #1877F2;
}

.popup_social li.twitter a {
    font-size: 23px;
    line-height: 16px;
    color: #1DA1F2;
}
/*--Popup Social--*/

/*--Sweet Alert2 Custom--*/

.swal2-container {
    z-index: 99999;
    backdrop-filter: blur(5px);
    background-color: rgb(6 19 43 / 80%) !important;
}
/*--Sweet Alert2 Custom--*/

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
}
.skip-link:focus {
  top: 10px;
}

/*--Page Loader--*/

/* Fullscreen overlay */
#page-loader {
    position: fixed;
    inset: 0;
    background: rgb(13 13 37 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(14px);
}

/* Spinner */
.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #39533d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .loader {
    animation: none;
  }
}

/* Screen-reader only text */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* --Page Loader-- */

/*--ISO Certifications--*/
.iso-certifications {
    width: 100%;
    margin: 0px auto 0px !important;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iso-certifications li {
    list-style: none;
    margin: 0px;
    padding: 0px 15px;
}
.iso-certifications li figure {
    margin: 0px;
    padding: 0px;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.iso-certifications li figure img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
/*--ISO Certifications--*/