@charset "utf-8";
/* CSS Document */

body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	text-align:center;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: 'Inter';
	font-weight:400;
	}
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:#333; text-decoration:none;}
a:hover {outline: none; text-decoration:none;}
img {border:none; height:auto; max-width:100%;}
li {list-style:none;}
*{box-sizing:border-box;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
	
/*==============Fonts==============*/
@font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Bold.woff2') format('woff2'),
        url('DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
        url('Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
        url('Inter-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-fix-bar{
	float: left;
	width: 100%;
	margin-bottom: 68px;
	}
.header{
	float: left;
    width: 100%;
    background:#fff;
   	padding: 10px 0;
	box-shadow:0px 1px 10px 0px rgba(0,0,0,0.1);
	height:68px;
	margin-top:-68px;
	top:68px;
	position:relative;
	}
.fixed-nav .header{
	position: fixed;
	z-index: 10;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	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);				
	}
.header_logo{
	float:left;
	width:152px;
	}				
a.header_btn {
    float: right;
    background: #ff8c42;
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 154px;
    height: 42px;
    line-height: 42px;
    font-weight: bold;
    border-radius: 6px;
	margin:3px 0 0;
}
a.header_btn img {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    margin: -3px 0 0 5px;
}
ul.menu-list{
	display:inline-block;
	vertical-align:top;
	margin:15px 0 0 0;
	}
ul.menu-list li{
	float: left;
	}
ul.menu-list li a{
	float:left;
    font-size: 15px;
    line-height: 15px;
	color:#000;
	padding:0 18px;
	}	
ul.menu-list li a:hover{ color:#066464;}
ul.menu-list li a.active{ color:#066464;}

/*=====Menu=====*/
.mob-mnu-ic{
	cursor: pointer;
    position: absolute;
    right: 0;
    top: 13px;
    z-index: 16;
    height: 30px;
	}
.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:13px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3{
	width: 30px;
	height: 3px;

	background-color: #737373;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 6px 0;}

.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 5px);
	transform: rotate(-45deg) translate(-6px, 5px);
	background:#737373;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
	transform: rotate(45deg) translate(-7px, -7px);
	background:#737373;
	}	
.mobilemenu{
	left:0;
	position:fixed;
	top:68px;
	background:rgba(255,255,255,1);
	z-index:10;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #ddd;
	}
.mobimenu-top{ top:68px;}	
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #ddd;
	}
.mobilemenu li a{
	float: left;
    width: 100%;
    padding: 17px 20px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
	}	
.mobilemenu li a:hover{color:#000;}	

/*--------------------
CSS FOR BANNER
------------------------*/
.banner{
	float:left;
	width:100%;
	padding:0 0 20px;
	overflow:hidden;	
	position:relative;
	}
.banner:before{
	content:'';
	position:absolute;
	left:0;
	width:100%;
	top:0;
	background:url(../images/banner.webp) no-repeat center top #f4ece3;
	background-size:cover;
	height:620px;
}
.bnr_heading{
	font-size:60px;
	line-height:68px; 	
	font-family: 'DM Sans';
	font-weight:700;
	margin-top:10px;
	color:#1a1f33;
	margin:270px 0 0;
	letter-spacing:-2px;
	}
.bnr_heading span{
    color:#066464;
	}
.bnr_text{
	font-size:22px;
	line-height:32px;
	color:#1a1f33;
	margin:25px 0 0;
}
.banner_list{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	gap:14px;
	margin:35px 0 0;
}
.banner_list li{
	background:#fff;
	border-radius:8px;
	padding:2px;
	width:15.5%;
	box-shadow:0px 6px 10px 1px rgba(6, 34, 131, 0.1);
	-webkit-box-shadow:0px 6px 10px 1px rgba(6, 34, 131, 0.1);
}
.banner_list_icon{
	background:#dffbfb;
	border-radius:8px;
	padding:30px 0;
}
.banner_list li:hover .banner_list_icon{
	background:#066464;
}
.banner_list_icon img{
	width:92px;
}
.banner_list li:hover .banner_list_icon img{filter: brightness(0) invert(1);}
.banner_list li p{
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 8px;
	font-size:17px;
	line-height:20px;
	font-weight:700;
}
.banner_list li p img{
	width:21px;
	margin:3px 0 0;
}

/*--------------------
CSS FOR CHOOSE
------------------------*/
.choose_sec{
	float:left;
	width:100%;
	padding:60px 0 70px;
}
.choose_sec_left{
	float:left;
	width:42%;
	text-align:left;
	padding-right:10px;
	margin-top:10px;
	}	
.common_heading{
	font-size:48px;
	line-height:54px;
	font-family: 'DM Sans';
	font-weight:700;
	color:#1a1f33;
	letter-spacing:-1px;
}
.common_heading span{color:#066464;}
.common_text{
	font-size:18px;
	line-height:26px;
	margin:20px 0 0;
	color:#000;
}

ul.choose_sec_list{
	float:left;
	width:100%;
	max-width:364px;
	margin-top:20px;
	}	
ul.choose_sec_list li{
	float:left;
	width:100%;
	padding:16px 30px 16px 0;
	border-bottom:1px solid #333333;
	cursor:pointer;
	}	
ul.choose_sec_list li p{
	font-size:22px;
	line-height:30px;
	color:#000;
	font-family: 'DM Sans';
	font-weight: bold;
	letter-spacing:-0.5px;
	}		
ul.choose_sec_list li:last-child{ border:none;}	
ul.choose_sec_list li.active{ 
	border-bottom:1px solid #066464;
	position:relative;
	}	
ul.choose_sec_list li.active p{color:#066464;}
ul.choose_sec_list li.active:before{
    content: '';
	right:0;
    position: absolute;
    background: url(../images/tab-arrw.webp) no-repeat right center;
    background-size: 24px;
    height: 32px;
    width: 48px;
	}

.choose_sec_right{
	float:left;
	width:58%;
	text-align:left;
	position:relative;
	}
.choose_sec_right_col{
	float:left;
	width:100%;
	display:none; 
	opacity:0;
	}	
.choose_sec_right_col.active{ display:block; opacity:1;}		
.choose_sec_tab_imgs{ 
	float:right;
	border-radius:12px;
	position:relative;
	}	
.choose_sec_flower_img{
	position: absolute;
    top: 70px;
    left: -80px;
	}
.choose_sec_tab_content{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	max-width:400px;
	background:#066464;
	padding:30px 40px 40px;
	text-align:left;
	border-radius:10px;
	z-index:2;
	overflow:hidden;
	}			
.choose_sec_tab_content h3{
	font-size:27px;
	line-height:34px;
	color:#fff;
	font-family: 'DM Sans';
	font-weight: bold;
	letter-spacing:-0.5px;
	}
.choose_sec_tab_content p{
	font-size:16px;
	line-height:24px;
	color:#fff;
	letter-spacing: 0.3px;
	margin-top:12px;
	}	
.choose_sec_tab_content .button_box{ margin-top:25px;}				
.choose_sec_tab_flower{
	position: absolute;
    top: -258px;
    right: -160px;
    opacity: 0.5;
	}	

.common_button{
	display: inline-block;
    vertical-align: top;
    width: 100%;
	max-width:338px;
    height:62px;
    background: #ff8c42;
	font-family: 'DM Sans';
    font-size:25px;
    line-height:62px;
    color: #fff;
    font-weight:bold;
    border-radius: 8px;
	text-align:center;
	margin-top:45px;
	}
.common_button img{
	display:inline-block;
	vertical-align:middle;
	width:20px;
	margin:-3px 0 0 10px;
	}

/*--------------------
CSS FOR EXPERTS
------------------------*/
.experts_section{
	float:left;
	width:100%;
	background:#f4fdfc;
	padding:60px 0 70px;
}
.experts_top{
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	align-items:center;
	text-align:left;
	padding-bottom:30px;
	border-bottom:1px solid #dbe3e2;
}
.experts_top .common_heading{width:40%;}
.experts_top .common_heading span{color:#066464;}
.experts_top .common_text{width:48%;}

ul.brand_logos{
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	padding:30px 0 0;
}
ul.brand_logos li img{
	height:45px;
}

/*--------------------
CSS FOR ASSETS
------------------------*/
.assets_sec{
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	width:100%;
	margin-top:40px;
	}
.assets_sec-row{
	display: -webkit-flex;
	display: flex;
    flex-direction: row;
    overflow: hidden;
	gap:25px;
	padding-bottom:10px;
	}
.assets_col-outer{
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-shrink: 0;
	gap:25px;
	animation: marquee 50s linear infinite; 
	}
@keyframes marquee{
    0% {transform: translateX(0)}

    to {transform: translateX(calc(-100% - 25px))}
	}

.assets_col-box{
    max-width: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #fefefe;
    text-align: center;
    position: relative;
	border-radius: 10px;
	overflow: clip;
	padding: 12% 20px 25px;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	margin:6px;
	}	
.assets_col-box_img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
	}
.assets_col_content{
    text-align: left;
    color: #000;
    width: 100%;
	position:relative;
	display: flex;
	display: -webkit-flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    flex: 1;
}
.assets_heading{
	font-size:28px;
	line-height:31px;
	font-family: 'DM Sans';
	font-weight:700;
	padding:0 0 10px;
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	align-items:center;
}
.assets_heading img{
	width:54px;
	margin:0 0 0 10px;
}
.assets_text{
	font-size:17px;
	line-height:24px;
	padding:0 0 10px;
}
.assets_button{
	font-size:17px;
	line-height:20px;
	font-family: 'DM Sans';
	font-weight:700;
	color:#ff8c42;
	margin-top:auto;
}
.assets_button img{
	width:20px;
	display:inline-block;
	vertical-align:middle;
	margin:0 0 0 5px;
}
ul.experts_info_list{
	margin:50px auto 0;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}	
ul.experts_info_list li{
	float:left;
	text-align:left;
	position:relative;
	}	
ul.experts_info_list li:after{
	content:'';
	position:absolute;
	right:-50px;
	top:0;
	height:97px;
	border-right:1px solid #e4ebea;
}
ul.experts_info_list li:last-child:after{border-right:none;}
ul.experts_info_list li h3{
	font-size:45px;
	line-height:45px;
	color:#066464;
	font-family: 'DM Sans';
	font-weight: bold;
	}		
ul.experts_info_list li p{
	font-size:17px;
	line-height:24px;
	color:#000;
	margin-top:15px;
	}

/*--------------------
CSS FOR STEPS
------------------------*/
.steps_section{
	float:left;
	width:100%;
	padding:60px 0 70px;
}
.steps_inner{
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	align-items:flex-start;
	max-width:1100px;
	margin:50px auto 0;
}
.steps_img{
	max-width:462px;
	width:42%;
	border-radius:15px;
}
ul.steps_list{
	width:51.71%;
}
ul.steps_list li{
	text-align:left;
	position:relative;
	padding:18px 0 18px 60px;
}
ul.steps_list li:last-child{padding-bottom:0px;}
ul.steps_list li:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -50px;
    border-left: 2px dotted #78b1b1;
}
ul.steps_list li:last-child:before{border-left:none;}
.steps_num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2a7272;
    border: 5px solid #dfebeb;
    font-size: 18px;
    line-height: 34px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    top: 10px;
}
.steps_list_heading{
	font-size:22px;
	line-height:26px;
	font-weight:700;
}
.steps_list_text{
	font-size:18px;
	line-height:26px;
	margin:15px 0 0;
}

/*--------------------
CSS FOR FAQ
------------------------*/
.faq_section{
	float:left;
	width:100%;
	padding:60px 0 70px;
	background:#f4fdfc;
}
.faq-container{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:770px;
	margin:30px 0 0;
	}
.up-slide-dwn{
	float: left;
    width: 98%;
    background: #fff;
    margin: 12px 1% 6px;
    padding: 0 20px;
    position: relative;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	border-radius:10px;
	}
.faq-innr{
	float:left;
	width:100%;
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close-btn.webp) no-repeat right 0 center;
	padding:20px 30px 20px 0;
	cursor:pointer;
	position:relative;
	background-size:14px;
	}
.acdn-heading.accordion-open{
	background:url(../images/open-btn.webp) no-repeat right 0 center;
	background-size:14px;
	}
	
.acdn_heading{
	font-size:21px;
	line-height:26px;
	color:#000;
	font-weight:bold;
	}		
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:15px 0 10px;
	border-top:1px solid #f1f1f1;
	}
.acdn-para{
	float:left;
	width:100%;
	font-size:17px;
	line-height:25px;
	color:#000;
	margin-bottom:15px;
	}

/*--------------------
CSS FOR TRANSFORM STRIP
------------------------*/
.transform_strip{
	float:left;
	width:100%;
	background:url(../images/transform_bg.webp) center top no-repeat;
	background-size:cover;
	padding:60px 0 70px;
}
.transform_content{
	width:57%;
	text-align:left;
}
.transform_content .common_heading{color:#066464;}
.transform_content .common_text{color:#000;}

/*--------------------
CSS FOR FOOTER
------------------------*/
.footer{
	float:left;
    width:100%;
    padding:40px 0;
	background:#fff;
	}
.ftr_logo{
	display:block;
	margin:0 auto 25px;
	width:152px;
	}
.ftr_txt{
    float: left;
    width: 100%;
    font-size: 16px;
    line-height:30px;
    color: #000;
	}	
.footer .ftr_txt a{
    padding:0 8px;
    color:#000;
	}									
						
/*=========Media Query=========*/
.show-mob, .show-tab {display: none;}
.fl{ float:left;}
.fr{ float:right;}	
.mt-0{margin-top:0;}

@media only screen and (max-width:1200px){
.container{width:1004px;}
	
.bnr_heading{ font-size: 49px; line-height: 54px;}	
.common_heading{ font-size: 39px; line-height: 47px;}

ul.experts_info_list li:after{right:-20px;}		

}

@media only screen and (max-width:1021px){
.container{width:750px;}
.show-desk {display: none;}
.show-tab {display: block;}

a.header_btn{ font-size: 17px; width: 165px; height: 44px; line-height: 44px; margin-right:45px;}
ul.menu-list{display: none;}
	
.banner:before{height:450px;}	
.bnr_heading{ font-size: 36px; line-height: 42px; margin:100px 0 0;}	
.banner_list{gap:10px;}
.banner_list_icon{padding:15px 0;}
.banner_list_icon img{width:68px;}
.banner_list li p{font-size:14px;}
.banner_list li p img{width:18px;}

.common_heading{ font-size: 32px; line-height: 38px;}
.common_text{ font-size: 17px; line-height: 24px; color: #000;}
.common_button{ max-width: 290px; height: 55px; font-size: 17px; line-height: 55px;}

.choose_sec{padding:50px 0;}
.choose_sec_left{margin:0;}
ul.choose_sec_list{ margin-top:15px;}
ul.choose_sec_list li p{ font-size: 19px; line-height: 23px;}
.choose_sec_right{ padding-bottom: 10%;}
.choose_sec_tab_imgs{ width: 400px;}
.choose_sec_tab_content{ max-width: 300px; left: 10px; padding: 20px 20px 25px;}
.choose_sec_tab_content h3{ font-size: 26px; line-height: 32px;}
.choose_sec_flower_img{ top: 30px; left: 15px; width: 230px;}
.choose_sec_tab_flower{ top: -68px; right: -60px; width: 172px;}

.experts_section{padding:50px 0 60px;}
.experts_top .common_heading, .experts_top .common_text{width:47%;}
ul.brand_logos li img{height:32px;}
.assets_sec{margin-top:45px;}
ul.experts_info_list li{width:22%;}
ul.experts_info_list li:after{right:0;}
ul.experts_info_list li h3{font-size:35px; line-height:35px;}

.steps_section{padding:50px 0;}
.steps_img{margin:25px 0 0;}
	
.faq_section{padding:50px 0;}
.faq-container{ margin-top: 15px;}
.accordion{ font-size: 19px;  line-height: 25px; padding: 20px 35px 20px 0;}	
.acdn-para{ font-size: 17px; line-height: 23px; margin-bottom: 20px;}

.transform_strip{padding:50px 0;}
.transform_content{width:63%;}
			
.footer{ padding: 25px 0 30px;}	
	
/*---------INNER PAGE-----------*/
	
}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.show-mob{display:block;}
.hide-mob{display:none;}

.top-fix-bar{ margin-bottom:50px;}
.header{ 
	padding: 7px 0 8px; 
	background:#fff; 
	position:relative; 
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1); 
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
	height:50px; 
	margin-top: -50px; 
	top: 50px;
}
.header_logo{ width: 110px; margin:1px 0 0;}	
a.header_btn{font-size: 13px; width: 120px; height: 34px; line-height: 33px; margin:2px 0 0;}

.mob-mnu-ic{ top:8px; right:15px;}
.mobilemenu{ top:50px;}
.mobimenu-top{ top: 50px;}

.banner{padding:0;}
.banner:before{
	background: #EEF7F7;
	background: linear-gradient(39deg, rgba(238, 247, 247, 0.98) 0%, rgba(254, 244, 235, 1) 100%); 
	height:100%; 
	background-size:100%;
}
.bnr_heading{font-size: 31px; line-height:34px; margin:25px 0 0;}
.bnr_text{font-size:16px; line-height:24px; margin:12px 0 0;}
.banner_list{gap:8px; margin:28px 0 0;}
.banner_list li{width:31.5%;}
.banner_list_icon{padding:15px 0;}
.banner_list_icon img{width:60px;}
.banner_list li p{padding:5px 8px; font-size:13px;}
.banner_mobile{width:calc(100% + 30px); margin:30px 0 0 -15px; max-width:none;}

.common_heading{ font-size: 32px; line-height: 36px; letter-spacing: -0.8px;}
.common_text{ font-size: 16px; line-height: 24px; color: #000;}
.common_button{ max-width: 210px; height: 46px; line-height: 45px; margin-top:30px;}		
.common_button img{ width: 20px; margin: -4px 0 0 6px;}

.choose_sec{padding:30px 0 35px;}
.choose_sec_left{width:100%; padding:0;}
.choose_sec_tab_imgs{float:none; margin:25px auto 0; height: 320px; object-fit:cover; object-position: top center;}
.choose_sec_wrp_box{ float:left; width:100%; position:relative; margin-top:10px;}
.choose_sec_accordion_bx{ float:left; width:100%; text-align:left;}
.choose_sec_up-slide-dwn{ width:100%; float: left; border-bottom:1px solid #066464;}	
.choose_sec_up-slide-dwn:last-child{ border-bottom:none;}
.choose_sec_accordion{
    float: left;
    width: 100%;
    background: url(../images/s3-close-btn.webp) no-repeat right 5px center;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-family: 'DM Sans';
    font-weight: bold;
    letter-spacing: -0.5px;
   	padding:18px 40px 18px 0;
    cursor: pointer;
	position:relative;
	}
.choose_sec_acdn-heading.choose_sec_accordion-open{ background: url(../images/s3-open-btn.webp) no-repeat right 5px center;}		
.choose_sec_acdn-content{ float: left; width: 100%; padding-bottom:25px;}
.choose_sec_acdn_col{ float:left; width:100%;}
.choose_sec_acdn_imgs{ margin:0 auto 0; display:block; width: 100%; height: 180px; object-fit: cover; border-radius: 12px;}
.choose_sec_acdn_innr{ float: left; width:100%; position:relative; overflow:hidden;}
.choose_sec_acdn_innr p{ font-size: 15px; line-height: 23px; color: #000; letter-spacing: 0.3px;}
.choose_sec_acdn_flower{ position: absolute; top: -68px; right: -60px; width: 172px; opacity: 0.5;}
.choose_sec .btn_box{ margin-top:20px;}

.experts_section{padding:25px 0 35px;}
.experts_top{flex-wrap:wrap; text-align:center; padding-bottom:20px;}
.experts_top .common_heading, .experts_top .common_text{width:100%;}
.experts_top .common_text.mt-0{margin-top:12px;}
ul.brand_logos{flex-wrap:wrap; gap:10px 6px; padding:20px 0 0;}
ul.brand_logos li{width:31.5%;}
ul.brand_logos li img{height:26px;}
.assets_sec{margin-top:35px;}
.assets_sec-row{gap:5px;}
.assets_col-outer{gap:5px;}
.assets_col-box{width:280px;}
.assets_heading{font-size:22px; line-height:26px;}
.assets_heading img{width:40px;}
.assets_text{font-size:16px; line-height:22px;}
.assets_button{font-size:16px; line-height:20px;}
@keyframes marquee{
	0% {transform: translateX(0)}
	
	to {transform: translateX(calc(-100% - 5px))}
}
ul.experts_info_list{margin: 30px auto 0; gap:0px; justify-content:center;}
ul.experts_info_list li{width:50%; padding: 25px 25px 20px;}
ul.experts_info_list li:after{border-right:none;}
ul.experts_info_list li h3{ font-size: 30px; line-height: 30px;}
ul.experts_info_list li p{ font-size: 16px; line-height: 22px; margin-top:8px;}

ul.experts_info_list li:after, ul.experts_info_list li:before{
	content:'';
	position:absolute;
	}
ul.experts_info_list li:after{
	top: 0;
	right: 0;
	bottom:0;
	width: 1px;
	background: #cfcfcf;
	height:110px;
	}
ul.experts_info_list li:before{
    top: 0;
    right:0;
    left:0;
    height: 1px;
    background: #cfcfcf;
	}
ul.experts_info_list li:nth-child(2):after , ul.experts_info_list li:nth-child(4):after{ display:none;}
ul.experts_info_list li:nth-child(1):before , ul.experts_info_list li:nth-child(2):before{ display:none;}
ul.experts_info_list li:nth-child(2) , ul.experts_info_list li:nth-child(4){ padding-right:0;}
ul.experts_info_list li:nth-child(1) , ul.experts_info_list li:nth-child(3){ padding-left:0;}
ul.experts_info_list li:nth-child(1) , ul.experts_info_list li:nth-child(2){ padding-top:0;}

.steps_section{padding:25px 0 30px;}
.steps_inner{flex-wrap:wrap; margin:10px auto 0;}
.steps_img{width:100%; margin:25px auto 0; height: 320px; object-fit:cover; object-position: top center;}
ul.steps_list{width:100%; margin:20px auto 0;}
ul.steps_list li{padding: 15px 0 15px 45px;}
ul.steps_list li:before{left:16px; top:30px; bottom:-30px;}
.steps_list_heading{font-size:20px; line-height:22px;}
.steps_num{width:34px; height:34px; font-size:16px; line-height:24px;}
.steps_list_text{font-size:16px; line-height:22px;}

.faq_section{padding:25px 0 40px;}
.up-slide-dwn{padding:0 15px;}
.accordion{padding: 15px 20px 15px 0;}
.acdn_heading{font-size:18px; line-height:24px;}
.acdn-para{font-size:16px; line-height:22px;}

.transform_strip{padding:0 0 35px; background:#fef4eb;}
.transform_strip_img{max-width:none; width:calc(100% + 30px); margin:0 0 20px -15px;}
.transform_content{width:100%; max-width:320px; margin:0 auto; text-align:center;}
	
.footer{ padding: 25px 0 20px;}
.ftr_logo{ width: 100px; margin:0 auto 15px;}
.ftr_txt{ font-size: 14px; line-height: 25px;}

}

/*CSS FOR MODAL*/
#app_common_modal,
#error_handler_overlay{position:fixed;top:0;left:0;padding:0;margin:0;width:100%;height:100%;z-index:2147483647;background:#333;background:rgba(255, 255, 255, .8);display:none;overflow-x:hidden;-webkit-overflow-scrolling:touch}
#app_common_modal .app_modal_body,
#error_handler_overlay .error_handler_body{max-width:600px;-webkit-background-clip:padding-box;font-family:Verdana, Geneva, sans-serif;box-sizing:border-box;outline:0}
#error_handler_overlay .error_handler_body{margin:100px auto;width:95%;padding:20px;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
#app_common_modal_close,
#error_handler_overlay_close{position:absolute;right:-10px;top:-10px;color:#FFF;background-color:#333;border:2px solid #FFF;border-radius:50%;width:30px;height:30px;text-align:center;cursor:pointer;text-decoration:none;font-weight:700;line-height:26px;padding:0;margin:0}
#app_common_modal .app_modal_body{margin:100px auto;min-width:inherit;width:95%;min-height:400px;padding:1.5%;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box}
#app_common_modal .app_modal_body iframe{min-height:400px;width:100%;border:1px solid #d5d6ef}
.exitpop-content{position:fixed;height:400px;width:708px;margin:-200px 0 0 -354px;top:50%;left:50%;text-align:left;padding:0;border:none;z-index:2147483647}
.exitpopup-overlay{background:rgba(0, 0, 0, .6);height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647;display:none}
.exitpop-content img{display:block;margin:0 auto;position:relative;text-align:center;max-width:100%;height:auto}
.exitpop-discountbar{background-color:red;border-bottom:4px dashed #fff;color:#fff;font-family:Arial, Helvetica, sans-serif;font-size:15px;font-weight:700;height:50px;line-height:50px;position:fixed;text-align:center;top:0;width:100%;z-index:9999;display:none}
.app-load-spinner{display:none;position:fixed;top:0;bottom:0;left:0;right:0;width:100px;height:100px;margin:auto;background-color:#333;border-radius:100%}
#loading-indicator::after,
#loading-indicator::before{box-sizing:border-box;left:50%;position:absolute;top:50%}
.all-card-types li{float:left;margin-right:20px}
#loading-indicator{background-color:rgba(0, 0, 0, .5);bottom:0;box-sizing:border-box;font-size:1px;height:100%;left:0;margin:0!important;padding:0!important;position:fixed;right:0;top:0;width:100%;z-index:2147483646}
#loading-indicator::before{background:url(../images/loading.gif) center center no-repeat rgba(0, 0, 0, 0);content:"";height:70px;margin-left:-35px;margin-top:-70px;width:70px;z-index:2}
#loading-indicator::after{background:#fff;border-radius:5px;color:#000;content:"Processing, one moment please... ";font-family:arial;font-size:17px;height:110px;line-height:98px;margin-left:-150px;margin-top:-75px;padding-top:35px;text-align:center;width:300px;z-index:1}

@-webkit-keyframes scaleout{
0%{-webkit-transform:scale(0)}
100%{-webkit-transform:scale(1);opacity:0}
}

@keyframes scaleout{
0%{transform:scale(0);-webkit-transform:scale(0)}
100%{transform:scale(1);-webkit-transform:scale(1);opacity:0}
}


@media screen and (max-device-width:767px) and (orientation:landscape){#app_common_modal .app_modal_body, #error_handler_overlay .error_handler_body{margin:20px auto;}
#app_common_modal .app_modal_body iframe{min-height:360px;}
}


@media(max-device-width:767px){#app_common_modal .app_modal_body{margin:2% auto}}