* {
	  padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Gellix';
    font-weight: 400;
}

body {
	/* background: #f2f2f2; */
}
.fl_flex_left {
        display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}
.fl_flex_right{
        display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}
.txt-center {
    text-align: center;
}
@media(max-width:769px){
    .fl_flex_left {
    grid-template-columns: 1fr;
}

.fl_flex_right {
    display: flex;
    flex-direction: column-reverse;
}
}
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 32px;
}


/* nav banner */
section.nav-banner {
    background: #f2f2f2;
}
.nav-banner-main {
    padding: 32px 0;
}
.nav-banner-main h2 {
    font-size: 34px;
    font-weight: 700;
    /* text-transform: uppercase; */
    padding-bottom: 8px;
}
.nav-banner-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-banner-menu a {
    color: #565656;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s ease;
}
.nav-banner-menu a:hover {
	text-decoration: underline;
}
.nav-banner-menu span svg {
    width: 18px;
    height: 16px;
    display: block;
}
.nav-banner-menu p {
    color: #565656;
    font-size: 18px;
    font-weight: 500;
}
.details-section-1 h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 60px;
    padding: 32px 0;
}
.details-section-1 h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    padding-bottom: 24px;
}
.details-section-1 h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 24px;
}
.details-section-1 p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 18px;
}
.details-section-1 p a {
	color: #47be68;
}
.img_section-1 {
	padding: 24px 0;
    text-align: center;
}
.img_section-1 p {
	font-size: 16px;
	padding-top: 12px;
}
.faqs {
    padding: 64px 0;
}
.faqs_main {
    max-width: 940px;
    margin: 0 auto;
}
.faqs_heading h2 {
    font-family: 'Gellix';
    color: #000;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 24px;
    text-align: center;
}
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000;
    font-size: 18.4px;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #47BE68;
}
.accordion button .icon {
    display: inline-block;
    position: relative;
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 4px;
    width: 15px;
    height: 3px;
    background: #47BE68;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 3px;
    left: 10px;
    width: 3px;
    height: 15px;
    background: #47BE68;
}
.accordion button .accordion-title {
    padding: 16px 24px 16px 0;
}
span.accordion-title {
    font-weight: 500;
    padding-left: 8px !important;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 500px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    padding: 0 0 20px 0;
}
.accordion .accordion-content p {
    font-size: 16px;
    margin: 32px 0;
}
.accordion .accordion-content p a:hover {
    color: #47be68;
}

@media only screen and (max-width: 560px) {
	.img_section-1 img {
		width: 100%;
		height: auto;
	}
	.details-section-1 h1 {
		font-size: 36px;
		font-weight: 700;
		line-height: 42px;
		padding: 24px 0;
	}
	.details-section-1 h2 {
		font-size: 28px;
		font-weight: 600;
		line-height: 34px;
		padding-bottom: 18px;
	}
	.details-section-1 h3 {
		font-size: 22px;
		line-height: 28px;
		padding-bottom: 16px;
	}
     span.accordion-title {
        font-size: 16px;
        font-weight: 400;
    }
}
 @media only screen and (max-width: 380px) {
	.nav-banner-main h2 {
		font-size: 28px;
	}
}
#mainBanner{

}
#mainBanner img{
    max-width: 100%;
}
#desktopbanner{

}
#mobilebanner{
    display:none;
}
@media only screen and (max-width: 512px) {
#desktopbanner{
    display:none;
}
#mobilebanner{
    display:block;
}
}
section.calltoaction {
    background: #f1f1f1;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.calltoaction_wrapper {
    display: flex;
    justify-content: space-between;
}
.actionHeading {
    font-size: 22px;
    font-weight: 700;
    padding-top: 5px;
}
.actionButton {
    text-align: center;
}
.actionButton a {
    display: inline-block;
    background: #47BE68;
    color: #fff;
    font-family: 'Gellix';
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    width: 150px;
    border-radius: 32px;
    padding-top: 12px;
}
@media only screen and (max-width: 700px) {
.calltoaction_wrapper {
    justify-content: inherit;
    flex-direction: column;
    text-align: center;
}
.actionButton {
    margin-top: 25px;
}
.actionButton a {
    width: 250px;
}
}