@charset "utf-8";
/* CSS Document */
/*----------------
RESET CSS
-----------------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	color:#000000;
	text-align:center;
	font-weight:400;
	font-family: 'Montserrat';
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
/*====FONTS====*/
@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Light.woff2') format('woff2'),
	url('Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Regular.woff2') format('woff2'),
	url('Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Medium.woff2') format('woff2'),
	url('Montserrat-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-SemiBold.woff2') format('woff2'),
	url('Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Bold.woff2') format('woff2'),
	url('Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}
	
/*=====MAIN_CSS_START=====*/
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}

/*====TOP_STRIP====*/	
.top_strip{
	float:left;
	width:100%;
	padding:8px 0;
	background:#00a69c;
	}
.top_strip_text{
	float:left;
	width:100%;
	font-size:12px;
	line-height:18px;
	color:#fff;
	font-weight:400;
	letter-spacing:0.3px;
	text-transform:uppercase;
	}
	
/*====HEADER====*/
.top-fix-bar{
	float: left;
	width: 100%;
	margin-bottom:70px;
	}
.header{
	float:left;
	width:100%;
	height:70px;
	margin-top:-70px;
	top:70px;
	position:relative;
	background:#fff;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
.fixed-nav .header{
	position: fixed;
	z-index: 11;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}				
.logo{
	float:left;
	margin-top:19px;
	width:114px;
	}
ul.topMenu{
	position:absolute;
	left:50%;
	top:25px;
	transform:translateX(-50%);
	}
ul.topMenu li{
	float:left;
	padding:0 15px;
	position:relative;
	}
ul.topMenu li a{
	color:#000000;
	font-size:15px;
	line-height:15px;
	font-weight:600;
	letter-spacing:0.3px;
	}	
.header_right{
	float:right;
	margin-top:16px;
	display: flex;
    align-items: center;
    justify-content: center;
	}
.header_btn{
    float:left;
	width:130px;
	padding:0 5px;
	height:40px;
	font-size:14px;
    line-height:34px;
    color:#000;
    text-align:center;
    border-radius:50px;
    background:#fff;
    font-weight:700;
    letter-spacing:0.5px;
	border:2px solid #02d65d;
	display: flex;
    align-items: center;
    justify-content: center;
	}
.whatsapp{
	float:left;
	width:25px;
	margin:-1px 5px 0 0;
	}
.call_icon{
	float:right;
	width:30px;
	margin:0 0 0 10px;
	}
/*====MobileMenuCss====*/
.mob-mnu-ic{
    cursor: pointer;
    position:absolute;
    right:15px;
    top:18px;
	z-index:16;
	height:25px;
	}
.mob-mnu-ic button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	}
.mob-mnu-ic span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	font-weight:300;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width:25px;
	height:3px;
	background-color: #000;
	transition: 0.4s;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	}
.bar2{margin:4px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	transform: rotate(-45deg) translate(-5px, 5px);
	background:#000;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-5px, -5px);
	transform: rotate(45deg) translate(-5px, -5px);
	background:#000;
	}	
.mobilemenu{
	left:0;
	position:fixed;
	top:85px;
	background:rgba(255,255,255,1);
	z-index:10;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #dddddd;
	}
.mobimenu-top{ top:55px;}	
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #dddddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:15px 20px;
	font-size:15px;
	color:#000;
	font-weight:500;
	}	
.mobilemenu li a:hover{color:#000;}

/*====Banner====*/
.banner{
	float:left;
	width:100%;
	padding:100px 0;
	background:#00a69c;
	overflow:hidden;
	}
.banner_inner{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:740px;
	text-align:center;
	}
.banner_strip{
	display:inline-block;
	vertical-align:middle;
	font-size:14px;
	line-height:20px;
	color:#000;
	text-transform:uppercase;
	background:#fff;
	border-radius:10px;
	padding:4px 20px;
	position:relative;
	letter-spacing:0.3px;
	font-weight:500;
	}
.bnr_strp_pin{
	position:absolute;
	right:-6px;
	top:-6px;
	width:21px;
	}
.banner_heading{
	font-size:55px;
	line-height:62px;
	color:#fff;
	font-weight:500;
	margin-top:15px;
	letter-spacing:-1px;
	}
.banner_sub_text{
	font-size:21px;
	line-height:28px;
	color:#fff;
	margin-top:20px;
	padding:0 15px;
	letter-spacing:0.5px;
	font-weight: 500;
	}
.button_box{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:268px;
	text-align:center;
	margin-top:50px;
	}
.banner .button_box{ margin-top:60px;}	
.common_button{
	display:inline-block;
	vertical-align:middle;
	background:#ed700f;
	width:100%;
	height:56px;
	border-radius:100px;
	font-size:18px;
	line-height:55px;
	color:#fffcf5;
	font-weight:700;
	border:none;
	-webkit-appearance:none;
	outline:none;
	text-align:center;
	}
.btn_arrow{
	display:inline-block;
	vertical-align:middle;
	width:11px;
	margin:-4px 0 0 10px;
	}
.bnr_pin{
	position:absolute;
	}	
.bnr_pin1{
	left:-130px;
	top:-95px;
	width:144px;
	}
.bnr_pin2{
	left:80px;
	top:-10px;
	width:129px;
	}
.bnr_pin3{
	left:-70px;
	top:100px;
	width:156px;
	}
.bnr_pin4{
	left:130px;
	top:250px;
	width:149px;
	}
.bnr_pin5{
	left:-80px;
	top:340px;
	width:125px;
	}
.bnr_pin6{
	left:50%;
	margin-left:-62.5px;
	top:-170px;
	width:125px;
	}
.bnr_pin7{
	right:50px;
	top:-65px;
	width:156px;
	}
.bnr_pin8{
	right:-110px;
	top:80px;
	width:140px;
	}
.bnr_pin9{
	right:100px;
	top:175px;
	width:137px;
	}
.bnr_pin10{
	right:-120px;
	top:245px;
	width:147px;
	}
.bnr_pin11{
	right:100px;
	top:365px;
	width:110px;
	}
.bnr_pin12{
	top:-140px;
	right:-120px;
	width:110px;
	}

/*====Slider_Strip====*/
.slider_strip{
	float:left;
	position: relative;
	width:100%;
	overflow:hidden;
	padding:13px 0;
	background:#fff;
	border-top:2px solid #000;
	border-bottom:2px solid #000;
	}
.logoSlider{
	float:left;
	width:100%;
	display: flex;
    flex-wrap: nowrap;
	}
.slider_track{
	display: flex;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    animation: marquee-horizontal 50s linear infinite;
	}
@keyframes marquee-horizontal {
	from {transform: translateX(0);}
	to {transform: translateX(-100%);}
	}
.slider_track li{
	font-size:14px;
	line-height:20px;
	color:#000;
	position:relative;
	letter-spacing:0.5px;
	margin-right:50px;
	text-transform:uppercase;
	font-weight:600;
	}
.slider_track li p{
	display:inline-block;
	vertical-align:middle;
	}	
.strip_ic{
	display:inline-block;
	vertical-align:middle;
	margin:0 10px 0 0;
	width:26px;
	}
/*====Section_1====*/
.section_1{
	float:left;
	width:100%;
	padding:60px 0;
	overflow:hidden;
	}
.se1_top_row{
	display: flex;
    display: -webkit-flex;
    justify-content: space-between;
	align-items:center;
	width:100%;
	}
.se1_top_left{
	float:left;
	width:63%;
	text-align:left;
	}
.common_heading{
	font-size:50px;
	line-height:56px;
	color:#000000;
	font-weight:600;
	letter-spacing:-1px;
	}
.common_heading span{ color:#fd6334;}
.common_paragraph{
	font-size:16px;
	line-height:24px;
	color:#000000;
	font-weight:400;
	margin-top:20px;
	}
.se1_top_right{
	float:right;
	width:34%;
	}
ul.s1_list{
	display: flex;
    display: -webkit-flex;
	width:100%;
    justify-content: space-between;
	}
ul.s1_list li{
	text-align:center;
	width:33.33%;
	position:relative;
	}
ul.s1_list li:after{
	content:"";
	position:absolute;
	top:25px;
	right:0;
	bottom:0;
	border-right:1px dotted #acacac;
	}
ul.s1_list li:last-child:after{ display:none;}
ul.s1_list li img{
	display:block;
	margin:0 auto;
	width:66px;
	}
ul.s1_list li p{
	font-size:16px;
	line-height:22px;
	color:#000;
	font-weight:500;
	margin-top:5px;
	}
.s1_slidersec{
	float:left;
	width:100%;
	}
.se1_slider_row{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:10px;
	}
.se1_slider_box{
	display:inline-block;
	vertical-align:middle;
	width:380px !important;
	border-radius:15px;
	overflow:hidden;
	background:#e6fffd;
	text-align:left;
	position:relative;
	margin-top:40px;
	}
.s1_slide_img{
	position:absolute;
	bottom:0;
	right:0;
	}
.s1_slide_img1{
	width:171px;
	right:0;
	top:10px;
	}
.s1_slide_img2{
	width:184px;
	right:0;
	top:10px;
	}
.s1_slide_img3{
	width:236px;
	right:0;
	top:0;
	}
.s1_slide_img4{
	width:184px;
	right:0;
	top:0;
	}
.s1_slide_img5 {
    width: 171px;
    right: 0;
    top: 10px;
}
.s1_slidbx_inner{
	width:100%;
	position:relative;
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	flex-direction:column;
	padding:40px 25px 45px;
	min-height:403px;
	z-index:1;
	}
.slide_cont{
	width:100%;
	display:inline-block;
	vertical-align:top;
	}
.s1_slide_head{
	font-size:26px;
	line-height:32px;
	color:#000;
	font-weight:600;
	}
.s1_slide_text{
	width:100%;
	font-size:16px;
	line-height:24px;
	color:#000;
	font-weight:400;
	margin-top:15px;
	padding-right:115px;
	}
.slider_box2 .s1_slide_text{padding-right:130px;}
.s1_slidbx_inner .common_button{ max-width:185px; font-weight:600; font-size:14px; height:42px; line-height:42px; letter-spacing:0.3px;}
/*====Section_2====*/
.section_2{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:#f3faf9;
	}
.collection_pinSec{
	float:left;
	width:100%;
	margin-bottom:15px;
	}
ul.collectpin_tab_lists{
	width:100%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
    justify-content: center;
	-webkit-justify-content: center;
	column-gap:10px;
	margin-top:40px;
	}
ul.collectpin_tab_lists li{
	width:18.5%;
	max-width:200px;
	background: #fff;
	border:1px solid #00a69c;
	border-radius:10px;
	padding:10px 10px;
	text-align:left;
	cursor:pointer;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	}
ul.collectpin_tab_lists li.active{
	background: #00a69c;
	color:#fff;
	}
.collect_pin_icon{
	width:26px;
	margin-right:5px;
	}
ul.collectpin_tab_lists li p{
	font-size:14px;
	line-height:16px;
	font-weight:600;
	letter-spacing:0.3px;
	}
.collection_box{
	float:left;
	width:100%;
	margin-top:50px;
	display:none;
	}
.collection_box.active{ display:block;}
.collect_box_inner{
	width:100%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
    justify-content: flex-start;
	-webkit-justify-content: flex-start;
    column-gap: 2.6%;
    row-gap:40px;
	}
.collect_col{
	width:23%;
	text-align:center;
	}
.collect_pin_box{
	background:#fff;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	border-radius:10px;
	overflow:hidden;
	padding:1px;
	}
.collect_pin{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.collect_pin_titel{
	font-size:18px;
	line-height:26px;
	color:#000;
	font-weight:600;
	margin-top:12px;
	}
.colect_pin_abt{
	font-size:15px;
	line-height:20px;
	color:#000;
	font-weight:500;
	margin-top:15px;
	padding:0 15px;
	}
/*====Section_3====*/
.section_3{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:#fff;
	}
.se3_left{
	float:left;
	width:44%;
	text-align:left;
	}
.s3_left_img{
	display:block;
	margin:10px 0 -25px;
	max-width:100%;
	}
.se3_right{
	float:right;
	width:52%;
	text-align:left;
	}
.se3_row{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:2px dotted #6d7174;
    cursor:pointer;
	}
.se3_row:last-child{
	padding-bottom:0;
	border-bottom:none;
	}
.se3_row_heading{
	float:left;
	width:100%;
	color:#000;
	font-size:22px;
	line-height:26px;
	font-weight:600;
	letter-spacing:0.3px;
	position:relative;
	padding:20px 40px 20px 70px;
	background:url(../images/close.png) no-repeat 98% 50%;
	}
.se3_row_heading.active{ background:url(../images/open.png) no-repeat 98% 50%;}
.se3_row_heading img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    width: 50px;
	}
.se3_row_content{
	float:left;
	width:100%;
	padding-left:70px;
	margin-bottom:25px;
	}
.se3_row_text{
    float: left;
    width: 100%;
    font-size:16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
	}
/*====Section_4====*/
.section_4{
	float:left;
	width:100%;
	padding:50px 0 60px;
	background:#00a59d;
	}
.s4_heading{
	font-size:30px;
	line-height:38px;
	color:#fff;
	font-weight:500;
	margin-bottom:0;
	}
.ticker{
	display:inline-block;
	vertical-align:top;
	margin:5px auto;
	width:100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	color:#fff;
	}
.ticker ul {
	width: 100%;
	position: relative;
	}
.ticker ul li{
	width:100%;
	font-size:60px;
	line-height:80px;
	color:#fff;
	font-weight:600;
	display:none;
	}
.contact_box{
	width:100%;
	max-width:650px;
	margin:30px auto 0;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content:center;
	gap: 2%;
	}
.contact_btn{
	font-size:22px;
	line-height:22px;
	color:#fff;
	font-weight:500;
	border-radius:7px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding:15px 18px;
	text-align:left;
	cursor:pointer;
	-webkit-appearance:none;
	background: #0b9791;
    border: 1px solid #2fbfb9;
	}
.cont_icon{
	width:40px;
	margin-right:10px;
	filter: brightness(0) invert(1);
	}
/*====FOOTER====*/
.footer{
	float:left;
	width:100%;
	padding:50px 0;
	}
.footer_logo{
	display:inline-block;
	vertical-align:middle;
	margin:0 0 15px;
	width:114px;
	}
.footer_text{
	font-size:16px;
	line-height:24px;
	color:#142b4d;
	font-weight:400;
	margin-top:10px;
	letter-spacing:0.3px;
	}
.footer_text a{ padding:0 15px;}

/*=======================*/
.showTab, .showMob{ display:none;}
.showDesk{ display:block;}
.hideDesk{ display:none;}
.fl{ float:left;}
.fr{ float:right;}
.white{ color:#fff;}

/*=====Media-Querry=====*/
@media only screen and (max-width:1200px){
.container{width:1004px;}

.bnr_pin1{left: -40px;top:-95px;width: 120px;}
.bnr_pin2{left:80px;top:-10px;width: 100px;}
.bnr_pin3{left: -20px;top:100px;width: 120px;}
.bnr_pin4{left: 100px;top:250px;width: 129px;}
.bnr_pin5{left: -40px;top: 380px;width: 105px;}
.bnr_pin6{left:50%;margin-left: -55px;top: -150px;width: 110px;}
.bnr_pin7{right: 80px;top:-65px;width: 120px;}
.bnr_pin8{right: -10px;top:80px;width: 100px;}
.bnr_pin9{right: 100px;top: 195px;width: 97px;}
.bnr_pin10{right: -20px;top: 275px;width: 107px;}
.bnr_pin11{right:100px;top: 395px;width: 90px;}
.bnr_pin12{top: -130px;right: -20px;width: 90px;}

.common_heading{ font-size:46px; line-height:52px;}

}


@media only screen and (max-width:1023px){
.container{width:750px;}
.showDesk{display: none;}
.showTab{display: block;}

.banner_heading{ font-size:45px; line-height:52px;}

.bnr_pin1{left: -40px;width: 90px;}
.bnr_pin2{top: -40px;width: 80px;}
.bnr_pin3{left: -60px;top: 40px;width: 100px;}
.bnr_pin4{left: 20px;top: 220px;width: 99px;}
.bnr_pin5{left: -60px;top: 370px;width: 85px;}
.bnr_pin6{margin-left: -55px;top: -150px;width: 110px;}
.bnr_pin7{right: 50px;top:-65px;width: 100px;}
.bnr_pin8{right: -30px;top: 130px;width: 80px;}
.bnr_pin9{right: 80px;top: 215px;width: 90px;}
.bnr_pin10{right: -30px;top: 295px;width: 90px;}
.bnr_pin11{right: 120px;top: 385px;width: 80px;}
.bnr_pin12{top: -130px;right: -40px;width: 80px;}

.common_heading{ font-size:40px; line-height:46px;}
.se1_top_right{ width:38%;}
.se1_slider_box{ width:360px !important}
.s1_slidbx_inner{ min-height:380px;}
.s1_slide_text{ padding-right:55px;}
.slider_box2 .s1_slide_text{ padding-right:85px;}
.s1_slide_img1{ width:160px;}
.s1_slide_img2{ width:170px; right:-35px;}
.s1_slide_img3{ width:190px;}
.s1_slide_img4{ width:170px;right:-15px;}

.collect_pin_titel{ font-size:16px; line-height:22px;}
.colect_pin_abt{ padding:0; letter-spacing:0;font-size: 13px; line-height: 18px;margin-top: 12px;}

.se3_row_heading{ font-size:19px; line-height:27px;}
.se3_row_content{ padding-left:0;}


}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.showDesk{display:none;}
.showMob{display:block;}
.hideMob{ display:none;}

.top_strip_text{ font-size:10px; line-height:14px; letter-spacing:0;}

.top-fix-bar{margin-bottom:55px;}
.header{height:55px;margin-top:-55px;top:55px;}				
.logo{width:90px; margin-top:14px;}

.header_right{ margin-top:12px;}
.header_btn{ width:110px; height:32px; line-height:29px; font-size:12px; border-width:1px;}
.whatsapp{ width:22px;}
.call_icon{ width:22px;}

.mob-mnu-ic{ top:20px; left:15px; right:auto;}

.banner { padding:25px 0;}
.banner_strip{ font-size:12px; line-height:18px;}
.bnr_strp_pin{ width:17px;}
.banner_heading{ font-size:32px; line-height:38px;}
.banner_sub_text{ letter-spacing:0; font-size:17px; line-height:25px; margin-top:15px; padding:0 0;}

.bnr_pin{ display:none;}

.bnr_pin1{left: 0;width: 70px;top: -40px;}
.bnr_pin2{display: none;}
.bnr_pin3{display: none;}
.bnr_pin4{left: -20px;top: auto; bottom:20px;width: 75px;}
.bnr_pin5{left: 50px;top: auto;width: 65px;bottom: -81px;}
.bnr_pin6{margin-left: -40px;top: -95px;width: 80px;}
.bnr_pin7{right: 0;top: -55px;width: 70px;}
.bnr_pin8{display: none;}
.bnr_pin9{display: none;}
.bnr_pin10{right: -23px;top: auto; bottom:20px;width: 70px;}
.bnr_pin11{right: 60px;top: auto;width: 60px;bottom: -70px;}
.bnr_pin12{top: -130px;right: -40px;width: 80px;}

.pinslide_sec{ width:calc(100% + 30px); margin:25px 0 0 -15px;display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	justify-content:space-between;
	flex-direction: column;
	row-gap:12px;}
.provide-company-box{
	width:100%;
	display:flex;
	display:-webkit-flex;
	flex-direction: row;
	gap:10px;
	}
.provide-company-row{
	display:flex;
	display:-webkit-flex;
	flex-direction:row;
	gap:10px;
	animation: marquee 25s linear infinite;
	}
@keyframes marquee {
    0% {transform: translateX(0)}

    to {transform: translateX(calc(-100% - 10px ))}
}
.s3-row-reverse .provide-company-row{
	animation-direction: reverse;
	}
	
.provide-company-col{
	width:100px;
	max-width: 100px;
	min-height:100px;
	background:#0a958d;
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	border:1px solid #50bdb6;
	border-radius:10px;
	}
.company-logo{
	width:auto;
	max-height:100px;
	}

.button_box{ margin-top:35px; max-width:230px;}
.banner .button_box{ margin-top:25px;}
.common_button{ height:54px; line-height:53px;}

.slider_track li{ font-size:13px; line-height:17px; margin-right:35px;}

.section_1{ padding:25px 0 35px;}
.se1_top_row{flex-wrap:wrap;}
.se1_top_left{ width:100%;text-align: center;}
.common_heading{ font-size:27px; line-height:32px;}
.common_paragraph{ font-size:16px; line-height:24px; margin-top:15px;}
.se1_top_right{ width:100%; margin-top:30px; display:none;}
ul.s1_list li img{ width:55px;}
ul.s1_list li p{ font-size:17px; line-height:20px;}

.s1_slidersec{ width:100%; padding:0 5px;}
.se1_slider_row{ margin-top:5px;}
.se1_slider_box{width:100% !important; margin:25px 0 0;}
.s1_slidbx_inner{ padding:20px 20px 30px; min-height:340px;}
.s1_slide_head{ font-size:23px; line-height:28px;}
.s1_slide_text{ padding-right:75px; margin-top:10px;}
.s1_slide_img1{ width:150px;}
.s1_slide_img2{ width:155px;}
.s1_slide_img3{ width:170px;}
.s1_slide_img4{ width:160px;}
.s1_slide_img5{ width:160px;}

.s1_slidbx_inner .common_button{ max-width:160px; line-height:42px; height:45px;}

.section_2{ padding:25px 0 35px;}
ul.collectpin_tab_lists { margin-top:25px;column-gap:6px; width:calc(100% + 20px); margin-left:-10px;}
ul.collectpin_tab_lists li{ margin-top:5px; padding:10px 5px; border-radius:5px;flex-wrap: wrap; text-align:center;}
.collect_pin_icon { width:26px; margin:0 auto 4px; display:block;}
ul.collectpin_tab_lists li p{ font-size:12px; line-height:16px; width:100%;}
.collection_pinSec{ margin-bottom:0;}
.collection_box{ margin-top:35px;}
.collect_box_inner {column-gap:4%;row-gap:40px;}
.collect_col{ width:48%;}
.collect_pin{ max-width:85%;}

.section_3{ padding:25px 0 35px;}
.se3_left{ width:100%;text-align: center;}
.se3_right{ width:100%; margin-top:20px;}
.se3_row_heading img{ width:40px; left:0;}
.se3_row_heading{font-size: 18px;line-height: 24px;padding: 20px 20px 20px 50px;}
.se3_row_text{ letter-spacing:0;}
.section_3 .button_box{ margin-top:20px;}

.section_4{ padding:25px 0 35px;}
.s4_heading{ font-size:21px; line-height:26px; margin-bottom:5px;}

.ticker{ width:100%;margin:0 auto 0;}
.ticker ul li{ font-size:34px; line-height:46px;}

.contact_box{ gap:10px; max-width:310px; margin:20px auto 0;}
.contact_btn{ width:100%; padding:12px 15px; font-size:19px; line-height:20px;}
.cont_icon{ width:30px; margin:0 10px 0 0;}
.contact_btn.email p{ margin-top:-2px;}

.footer{ padding:25px 0;}
.footer_logo{ width:90px; margin:0 0 5px;}
.footer_text{ font-size:14px; line-height:20px;}
.footer_text a{ padding:0 7px;}
}