@charset "utf-8";
/* CSS Document */

body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	color:#000;
	text-align:center;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: 'Inter';
	}
div, ul, h1, h2, h3, h4, h5, h6, 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;}
li {list-style:none;}
*{box-sizing:border-box;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
/*-----------------------
MAIN CSS START
------------------------*/
.container{
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
}
.overflow{
	overflow:hidden;
}

.fl{float:left;}
.fr{float:right;}

.hide-desk{display:none;}

button,
input,
select{
	font-family:inherit;
	outline:none;
}

/*-----------------------
FONTS
------------------------*/
@font-face {
    font-family: 'Inter';
    src: url('Inter-Light.woff2') format('woff2'),
        url('Inter-Light.woff') format('woff');
    font-weight: 300;
    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-Medium.woff2') format('woff2'),
	url('Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Inter';
	src: url('Inter-SemiBold.woff2') format('woff2'),
	url('Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	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;
	}
@font-face {
    font-family: 'Inter';
    src: url('Inter-ExtraBold.woff2') format('woff2'),
        url('Inter-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}	
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.woff2') format('woff2'),
        url('Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBold.woff2') format('woff2'),
        url('Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Medium.woff2') format('woff2'),
        url('Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*======================================
	header section
======================================*/
.top-fix-bar{
	margin-bottom:65px;
	}
.main_header{
	width:100%;
	background:#ffffff;
	z-index:999;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
	height:65px;
	margin-top: -65px;
	position: relative;
	top:65px;
}
.fixed-nav .main_header{
	position: fixed;
	z-index: 11;
	top: 0;
	border:none;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top:0;
	border-bottom:1px solid #e1e1e1;
	}
.header_inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
}

.header_logo{
	display:inline-flex;
	align-items:center;
	margin-top:13px;
}

.header_logo img{
	width:218px;
	display:block;
}

.header_nav{
	display:flex;
	align-items:center;
	margin-top:10px;
}

.header_menu{
	display:flex;
	align-items:center;
	gap:40px;
	list-style:none;
}

.header_menu li a{
	font-size:15px;
	color:#000;
	text-decoration:none;
	transition:0.3s ease;
}

.header_menu li a:hover{
	color:#2ec7d3;
}

.menu_toggle{
	border:none;
	background:none;
	display:none;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:5px;
	cursor:pointer;
	padding:0;
}

.menu_toggle span{
	width:24px;
	height:2px;
	background:#111111;
	transition:0.3s ease;
}

.menu_toggle.active span:nth-child(1){
	transform:translateY(7px) rotate(45deg);
}

.menu_toggle.active span:nth-child(2){
	opacity:0;
}

.menu_toggle.active span:nth-child(3){
	transform:translateY(-7px) rotate(-45deg);
}
.header_button {
    width: 120px;
    height: 38px;
    border-radius: 6px;
    background: #06be50;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    font-size: 15px;
    line-height: 35px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0px 0px 8px 0px rgba(22, 195, 79, 0.2);
    transition: all 0.3s ease;
	margin-left:40px;
}


/*======================================
	hero section
======================================*/
.hero{
	position:relative;
	width:100%;
	height:500px;
	overflow:hidden;
	background:#f5f1ee;
	background-size:cover;
}
.logo img{
	display:inline-block;
	vertical-align:top;
}
.hero_overlay{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:linear-gradient(90deg, #f5f1ee 0%, rgba(245,241,238,0.98) 50%, rgba(245,241,238,0.85) 55%, rgba(245,241,238,0) 67%);
	z-index:2;
}

.hero_inner{
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	max-width:1320px;
	margin:0 auto;
}

.hero_content{
	position:relative;
	width:60%;
	z-index:3;
	text-align:left;
	padding-left:70px;
}

.hero_content_inner{
	max-width:100%;
	width:100%;
	float:none;
}

.hero_tag{
	display:flex;
	align-items:center;
	column-gap:7px;
	height:29px;
	padding:0px 14px;
	border-radius:50px;
	background:#cddddd;
	margin-bottom:24px;
	width:fit-content;
}
.hero_tag img{
	width:10px;
	margin:1px 0 0;
}
.hero_tag p{
	font-size:15px;
	line-height:15px;
	font-weight:500;
	color:#000;
	letter-spacing:0px;
}

.hero_title{
	font-size:56px;
	line-height:68px;
	font-family: 'Poppins';
	font-weight:700;
	color:#000000;
	letter-spacing:-1px;
	margin-bottom:14px;
}

.hero_title span{
	display:flex;
	align-items:center;
	column-gap:14px;
	color:#2ec7d3;
}

.hero_title span img{
	width:65px;
	height:auto;
	display:block;
	object-fit:contain;
	margin-top:-10px;
}

.hero_text{
	font-size:18px;
	line-height:26px;
	font-weight:400;
	color:#000;
}

.button_box{
	max-width:444px;
	width:100%;
	display:inline-block;
	vertical-align:top;
	margin-top:45px;
}
.hero_btn{
	width:100%;
	height:62px;
	border-radius:12px;
	background:#06be50;
	display:flex;
	align-items:center;
	justify-content:center;
	column-gap:12px;
	font-size:23px;
	line-height:23px;
	font-weight:600;
	color:#ffffff;
	text-decoration:none;
	box-shadow:0px 0px 8px 0px rgba(22,195,79, 0.2);
	transition:all 0.3s ease;
}

.hero_btn:hover{
	transform:translateY(-2px);
	box-shadow:0px 16px 34px rgba(22,195,79,0.35);
}

.hero_btn img{
	width:22px;
	display:inline-block;
	vertical-align:middle;
}

ul.button_list{
	display:flex;
	align-items:center;
	justify-content:center;
	column-gap:15px;
	margin-top:15px;
}
ul.button_list li{
	display:flex;
	align-items:center;
	column-gap:5px;
}

ul.button_list li img{
	width:15px;
	display:inline-block;
	vertical-align:middle;
	margin:-1px 0 0 0;
}

ul.button_list li p{
	font-size:14px;
	line-height:14px;
	font-weight:500;
	color:#000;
}

.hero_image{
	position:absolute;
	top:0px;
	right:0px;
	width:55%;
	height:100%;
} 
.hero_image img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	display:block;
}

/*======================================
	strip section
======================================*/
.hero_strip{
	width:100%;
	padding:8px 0;
	background:#23919b;
	display:flex;
	align-items:center;
	justify-content:center;
}

.hero_strip_inner{
	display:flex;
	align-items:center;
	justify-content:center;
	column-gap:85px;
}

.hero_strip_item{
	display:flex;
	align-items:center;
	column-gap:10px;
	padding:15px 0;
}

.hero_strip_item h3{
	font-size:28px;
	line-height:28px;
	font-weight:700;
	color:#ffffff;
	letter-spacing:0px;
}

.hero_strip_item p{
	font-size:20px;
	line-height:22px;
	color:#fff;
	letter-spacing:0px;
}

.hero_strip_divider{
	width:1px;
	height:40px;
	background:rgba(255,255,255,0.35);
}

/*======================================
	info section
======================================*/
.info_section{
	padding:65px 0px 70px;
	background:#fff;
}
.sub_heading{
	padding:10px 20px;
	border-radius:50px;
	background:#e8f3f4;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:16px;
	line-height:16px;
	font-weight:500;
	margin-bottom:18px;
	min-width:130px;
}

.common_heading{
	font-size:50px;
	line-height:56px;
	font-family: 'Poppins';
	font-weight:700;
	color:#000000;
	letter-spacing:-1.3px;
}

.common_heading span{
	background: #1A94A8;
	background: linear-gradient(45deg, rgba(26, 148, 168, 1) 0%, rgba(40, 200, 198, 1) 100%);
	background-clip:text;
	color: transparent;
}

.common_text{
	font-size:18px;
	line-height:28px;
	color:#000;
	margin-top: 22px;
}

.info_card_wrap{
	display:flex;
	align-items:stretch;
	justify-content:space-between;
	column-gap:16px;
	margin-top:54px;
}

.info_card{
	width:calc(25% - 12px);
	background:#f3f7f7;
	border:1px solid #d7e5ea;
	border-radius:14px;
	padding:20px 25px;
	box-sizing:border-box;
	text-align:left;
}

.info_card_icon{
	width:50px;
	height:50px;
	border-radius:50%;
	background: #1A94A8;
	background: linear-gradient(45deg, rgba(26, 148, 168, 1) 0%, rgba(40, 200, 198, 1) 100%);
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:18px;
}

.info_card_icon img{
	width:25px;
	object-fit:contain;
	display:block;
}

.info_card h3{
	font-size:20px;
	line-height:24px;
	font-weight:700;
	margin-bottom:10px;
}

.info_card p{
	font-size:18px;
	line-height:25px;
}

.apply_box{
	position:relative;
	max-width:920px;
	margin:54px auto 0px;
	border-radius:14px;
	overflow:hidden;
	border:1px solid #e8efef;
}

.apply_box_overlay{
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	height:100%;
	background:url(../images/apply-box-bg.webp) no-repeat center center;
	background-size:cover;
}

.apply_box_content{
	position:relative;
	z-index:2;
	padding:45px 40px 42px;
	text-align:center;
}

.apply_box_content h2{
	font-size:48px;
	line-height:54px;
	font-weight:800;
	color:#000000;
	letter-spacing:-1.5px;
	margin-bottom:28px;
}

.apply_box_content h2 span{
	color:#27c1cf;
}

.apply_box_list{
	max-width:430px;
	margin:0px auto;
	text-align:left;
}

.apply_box_list li{
	position:relative;
	padding-left:35px;
	font-size:20px;
	line-height:24px;
	font-weight:700;
	margin-bottom:14px;
	list-style:none;
}

.apply_box_list li:last-child{
	margin-bottom:0px;
}

.apply_box_list li:before{
	content:"";
	position:absolute;
	top:1px;
	left:0px;
	width:21px;
	height:21px;
	background:url(../images/apply-list-tick.webp) no-repeat center center;
	background-size:21px;
}

.info_bottom_text{
	margin-top:28px;
	text-align:center;
}

.info_bottom_text p{
	font-size:14px;
	line-height:22px;
}

/*======================================
	choose section
======================================*/
.choose_section{
	padding:65px 0px 70px;
	background:#fff;
	text-align:center;
	border-top:1px solid #e8e8e8;
}
.choose_grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 20px 30px;
	align-items:stretch;
	margin:40px auto 0;
}
.choose_text{
	display:flex;
	align-items:center;
	text-align:left;
	padding: 0px 40px 0 0;
}
.choose_text p{
	font-size:18px;
	line-height:28px;
}
.choose_card{
	position:relative;
	background:#f3f7f7;
	border:1px solid #d7e5ea;
	border-radius:16px;
	padding:24px 22px 22px;
	text-align:left;
	box-sizing:border-box;
	min-height:184px;
}
.choose_card img{
	position:absolute;
	top:20px;
	right:20px;
	width:47px;
	display:block;
}
.choose_card h3{
	font-size:22px;
	line-height:26px;
	font-weight:700;
	max-width:220px;
	margin-bottom:14px;
	letter-spacing:-0.3px;
}
.choose_card p{
	font-size:18px;
	line-height:26px;
	font-weight:400;
}

/*======================================
	work section
======================================*/
.work_section{
	padding:65px 0 70px;
	background:#f3f7f7;
	text-align:center;
}
.work_tag{background:#fff;}
.work_section h2{
	margin-bottom:52px;
}
.work_row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	column-gap:8px;
	margin:-30px auto 0;
	position:relative;
}
.work_image{
	margin:0 -90px;
}
.work_content{
	width:48%;
}
.work_card{
	position:relative;
	background:#fff;
	border:1px solid #d7e5ea;
	border-radius:22px;
	padding:24px 84px 24px 26px;
	text-align:left;
	margin-bottom:18px;
	box-sizing:border-box;
}
.work_card:last-child{
	margin-bottom:0px;
}
.work_card_icon{
	position:absolute;
	top:20px;
	right:20px;
	width:48px;
	height:48px;
	border-radius:50%;
	background:#e8f3f4;
	display:flex;
	align-items:center;
	justify-content:center;
}
.work_card_icon img{
	width:26px;
	display:block;
}
.work_card span{
	display:block;
	font-size:18px;
	line-height:22px;
	font-weight:800;
	color:#1a94a7;
	margin-bottom:6px;
}
.work_card h3{
	font-size:24px;
	line-height:30px;
	font-weight:700;
	margin-bottom:5px;
	letter-spacing:-0.5px;
}
.work_card p{
	font-size:18px;
	line-height:26px;
}

/*======================================
	apply section
======================================*/
.fill_section{
	background:#fff;
	overflow:clip;
}
.fill_content{
	width:51%;
	text-align:left;
	padding:75px 0 80px;
}
.fill_image{
	position:absolute;
	right:-20px;
	top:20px;
}

/*======================================
	pricing section
======================================*/
.pricing_section{
	padding:65px 0px 70px;
	background:#f3f7f7;
	text-align:center;
}
.pricing_row{
	display:flex;
	align-items:stretch;
	justify-content:center;
	column-gap:18px;
	margin:40px auto 0;
}
.pricing_card{
	display: flex;
	flex-direction: column;
	width:100%;
	max-width:375px;
	background:#ffffff;
	border:1px solid #e6e6e6;
	border-radius:16px;
	padding:25px 18px;
	text-align:left;
	box-sizing:border-box;
	box-shadow:0px 4px 14px rgba(0,0,0,0.04);
}
.pricing_time{
	height:28px;
	padding:0px 12px;
	border-radius:50px;
	background:#e8f3f4;
	display:inline-flex;
	align-items:center;
	column-gap:6px;
	font-size:14px;
	line-height:14px;
	font-weight:600;
	color:#000;
	margin-bottom:12px;
	width: fit-content;
}
.pricing_time img{
	width:12px;
	height:12px;
	object-fit:contain;
	display:block;
}
.pricing_card h3{
	font-size:24px;
	line-height:30px;
	font-weight:700;
	color:#000;
	margin-bottom:10px;
	letter-spacing:-0.3px;
}
.pricing_card p{
	font-size:17px;
	line-height:25px;
	color:#000;
	letter-spacing: -0.2px;
	margin-bottom:20px;
}
.pricing_card h4{
	display:flex;
	align-items:flex-end;
	column-gap:8px;
	font-size:52px;
	line-height:52px;
	font-family: 'Poppins';
	font-weight:600;
	color:#000;
	letter-spacing:-1.3px;
	margin-top:auto;
}
.pricing_card h4 span{
	font-size:18px;
	line-height:22px;
	font-family: 'Inter';
	font-weight:400;
	margin-bottom:15px;
	letter-spacing:0px;
}
.pricing_card a{
	width:100%;
	height:60px;
	border-radius:8px;
	background:#14c64b;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:20px;
	line-height:20px;
	font-weight:700;
	color:#ffffff;
	text-decoration:none;
	margin-top:18px;
	box-shadow:0px 10px 24px rgba(20,198,75,0.20);
	margin-top:20px;
}

/*======================================
	country section
======================================*/
.country_section{
	padding:65px 0 20px;
	background:#fff;
	text-align:center;
}
.country_search{
	position:relative;
	width:100%;
	max-width:432px;
	margin:42px auto 44px;
}
.country_search img{
	position:absolute;
	top:50%;
	left:22px;
	transform:translateY(-50%);
	width:23px;
}
.country_search input{
	width:100%;
	height:58px;
	border:1px solid #e1e1e1;
	border-radius:14px;
	padding:0px 20px 0px 58px;
	background:#ffffff;
	font-size:18px;
	outline:none;
}
.country_grid{
	display:grid;
	grid-template-columns:repeat(7, 1fr);
	gap:10px;
}
.country_card{
	background:#f3f7f7;
	border:1px solid #d7e5ea;
	border-radius:24px;
	padding:20px 12px 24px;
	text-align:center;
	min-height:135px;
}
.country_card img{
	width:48px;
	height:48px;
	border-radius:50%;
	object-fit:cover;
	
}
.country_card .fi{
	font-size:38px; 
	display:block;
	margin:0px auto 15px;
}
.country_card h3{
	font-size:16px;
	line-height:22px;
	font-weight:400;
	color:#000;
	margin-bottom:10px;
}
.country_card p{
	font-size:12px;
	line-height:12px;
	color:#1a94a8;
}
.country_card p.optional{
	color:#10bf57;
}
.country_card.hide_country{
	display:none;
}
.country_btn{
	background:none;
	outline:none;
	border:none;
	font-size:18px;
	line-height:18px;
	color:#1a94a7;
	cursor:pointer;
	margin:46px auto 0;
	text-decoration:underline;
	font-family: 'Inter';
}

/*======================================
	review section
======================================*/
.review_section{
	padding:65px 0 70px;
	background:#fff;
	text-align:center;
}
.review_grid{
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:25px;
	margin:40px auto 0;
}
.review_card{
	background:#f3f7f7;
	border-radius:14px;
	padding: 22px 25px 25px;
	text-align:left;
	border:1px solid #d9e6eb;
	display: flex;
    flex-direction: column;
}
.review_card > img{
	width:85px;
	display:block;
	margin-bottom:18px;
}
.review_card_text{
	font-size:18px;
	line-height:26px;
	margin-bottom:22px;
}
.review_card_verify{
	display:flex;
	align-items:center;
	column-gap:10px;
	font-size:18px;
	line-height:18px;
	font-weight:600;
	margin-top:auto;
}
.review_card_verify span{
	font-size:12px;
	line-height:12px;
	font-weight:400;
	margin-top:2px;
}
.review_card_verify span img{
	width:14px;
	display:inline-block;
	vertical-align:middle;
	margin:-3px 0 0 0;
}

/*======================================
	explore section
======================================*/
.explore_section{
	position:relative;
	padding:70px 0px;
	background:#f7f7f7;
	text-align:center;
	overflow-x:clip;
}
.explore_flower_left{
	position:absolute;
	top:-40px;
	left:20px;
	display:block;
	z-index:1;
}
.explore_flower_right{
	position:absolute;
	top:-115px;
	right:80px;
	display:block;
	z-index:1;
}
.explore_slider_sec{
	width:100%;
	max-width:1935px;
	margin:50px auto 0;
	overflow:hidden;
}

.explore_slider{
	width:100%;
}

.explore_slider .swiper-wrapper{
	display:flex;
	align-items:flex-start;
}

.explore_slider .swiper-slide{
	position:relative;
	width:298px !important;
	height:448px;
	border-radius:18px;
	overflow:hidden;
	flex-shrink:0;
}

.explore_slide_img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

.explore_slider .swiper-slide p{
	position:absolute;
	left:16px;
	bottom:25px;
	display:flex;
	align-items:center;
	column-gap:6px;
	font-size:18px;
	line-height:20px;
	font-weight:700;
	color:#ffffff;
	z-index:2;
	text-shadow:1px 1px 20px rgba(0,0,0,0.7);
}

.explore_slider .swiper-slide p img{
	width:14px;
	display:block;
}

.explore_pagination{
	position:relative;
	margin-top:50px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.explore_pagination .swiper-pagination-bullet{
	width:90px;
	height:4px;
	border-radius:0;
	background:#e8e8e8;
	opacity:1;
	margin:0 !important;
	transition:all 0.3s ease;
}

.explore_pagination .swiper-pagination-bullet-active{
	background:#28bfd0;
	border-radius:10px;
}

/*======================================
	faq section
======================================*/
.faq_section{
	padding:65px 0px;
	background:#fff;
}

.faq-container{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:770px;
	margin:40px 0 0;
}

.up-slide-dwn{
	float:left;
	width:100%;
	position:relative;
	border-bottom:1px solid #d7dde9;
}

.up-slide-dwn:last-child{
	border-bottom:none;
}

.faq-innr{
	float:left;
	width:100%;
	border-radius:10px;
	overflow:hidden;
}

.accordion{
	float:left;
	width:100%;
	text-align:left;
	padding:18px 40px 22px 0;
	cursor:pointer;
	position:relative;
}

.accordion:before,
.accordion:after{
	content:"";
	position:absolute;
	top:50%;
	right:0;
	width:17px;
	height:3px;
	background:#000;
	border-radius:20px;
	transition:all 0.35s ease;
	transform-origin:center;
}

.accordion:before{
	transform:translateY(-50%) rotate(0deg);
}

.accordion:after{
	transform:translateY(-50%) rotate(90deg);
}

.acdn-heading.accordion-open:before{
	transform:translateY(-50%) rotate(45deg);
}

.acdn-heading.accordion-open:after{
	transform:translateY(-50%) rotate(-45deg);
}

.acdn-heading{
	padding:18px 20px 18px 0;
}

.acdn-heading p{
	font-size:20px;
	line-height:26px;
	color:#000;
	font-weight:700;
}

.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 0 10px;
}

.acdn-para{
	float:left;
	width:100%;
	font-size:17px;
	line-height:26px;
	color:#000;
	margin-bottom:15px;
}


/*======================================
	cta section
======================================*/
.cta_section{
	padding:60px 0px 70px;
	background:url(../images/cta-bg.webp) center top no-repeat #ffffff;
	position:relative;
}
.cta_section:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.76);
}
.cta_box{
	position:relative;
	max-width:860px;
	width:100%;
	text-align:center;
	margin:0 auto;
}
.cta_section .common_heading{
	text-shadow:5px 5px 50px #fff;
}

/*======================================
	footer section
======================================*/
.footer{
	background:#fff;
	float:left;
	width:100%;
	padding:50px 0;	
}

.footer_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	text-align:left;
}
.footer_col_right{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width:570px;
	width:100%;
}
.footer_col {
	width: 220px;
}
.footer_brand {
	width: 400px;
}
.footer_logo {
	margin-bottom: 16px;
}
.footer_logo img{width:167px;}

.card_heading{
	font-size:18px;
	line-height:22px;
	font-weight:600;
	margin:25px 0 0;
}
.card_logos{
    display: flex;
    align-items: center;
    gap: 10px;
	margin:12px 0 0;
}
.card_logos img{
	width:41px;
}

.footer_desc {
	font-size: 16px;
	line-height: 25px;
	color: #000;
}
.footer_title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	color:#000;
}
.footer_list {
	list-style: none;
}
.footer_list li {
	margin-bottom: 10px;
	font-size: 15px;
	color:#000;
}
.footer_list li a {
	text-decoration: none;
	color:#000;
}
.footer_list li a:hover {
	color: #000;
}
.footer_disclaimer {
	width:100%;
	margin:30px auto 0;
	background:#f2f3f3;
	padding: 20px;
	text-align: center;
}
.footer_disclaimer p {
	font-size: 15px;
	line-height: 20px;
	color: #000;
}
.footer_bottom {
	text-align: center;
	margin-top: 20px;
}
.footer_bottom p {
	font-size: 14px;
	font-weight:500;
	color: #000;
}


@media only screen and (max-width:1180px){
.container{width:1000px;}

.hero_title{font-size:42px; line-height:52px;}
.hero_title span img{width:45px; margin-top:-6px;}

.hero_strip_inner{column-gap:25px;}

.common_heading{font-size:40px; line-height:48px;}

.fill_image{right:-80px; width:600px;}

.explore_flower_left{left:-70px;}
}

@media only screen and (max-width:1023px){
.container{width:750px;}
.hide-tab{display:none;}

.header_menu{gap:20px;}

.hero_title{font-size:32px; line-height:42px;}

ul.button_list li p{font-size:11px; line-height:12px;}

.hero{height:460px;}
.hero_strip_item h3{font-size:20px; line-height:26px;}
.hero_strip_item p{font-size:17px; line-height:20px;}

.info_section{padding:45px 0 50px;}

.sub_heading{font-size:13px; line-height:13px; padding:8px 20px;}
.common_heading{font-size:29px; line-height:36px; letter-spacing:-0.8px; margin-bottom:-5px;}
.common_text{font-size:17px; line-height:26px;}

.info_card_wrap{flex-wrap:wrap; gap:20px;}
.info_card{width: calc(50% - 12px);}

.choose_section{padding:45px 0 50px;}
.choose_grid{grid-template-columns: repeat(2, 1fr);}

.work_section{padding:45px 0 50px;}
.work_image{width:500px;}

.fill_content{padding:45px 0 50px;}
.fill_image{right:-230px; width:580px;}

.pricing_section{padding:45px 0 50px;}

.country_section{padding:50px 0 30px;}
.country_grid{grid-template-columns: repeat(4, 1fr);}

.review_section{padding:40px 0 50px;}

.explore_section{padding:50px 0;}
.explore_flower_left{width:110px; left:-10px;}
.explore_flower_right{top:-95px; right:40px; width:140px;}

.faq_section{padding:40px 0 50px;}

.cta_section{padding:40px 0;}

.footer_top{gap:40px;}
.card_heading{font-size:16px; line-height:20px; margin-top:15px;}
.footer_col_right{max-width:500px;}
.footer_col{width:120px;}
.footer_brand{width:350px;}
.footer_title{font-size:17px;}
}

@media only screen and (max-width:767px){
.hide-mob{display:none;}
.hide-desk{display:block;}
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}

.top-fix-bar{margin-bottom:54px;}
.main_header{height: 54px; margin-top: -54px; top: 54px;}
.header_logo{margin-top:12px;}
.header_logo img{width:162px;}
.menu_toggle{display:flex; margin-top:13px;}
.header_nav{
	position:absolute;
	top:100%;
	left:0;
	width:100%;
	background:#ffffff;
	padding:0 20px;
	max-height:0;
	overflow:hidden;
	transition:0.4s ease;
	flex-wrap:wrap;
}
.header_nav.active{max-height:400px;padding:20px; box-shadow: 0 10px 6px 0px rgba(0, 0, 0, 0.1); margin-top:10px;}
.header_nav.active:after{
	content:'';
	position:absolute;
	left:0;
	width:100%;
	top:0;
	border-top:1px solid #d5d5d5;
}

.header_menu{flex-direction:column;align-items:flex-start;gap:12px;}

.header_button{width:100%; height:45px; font-size:17px; margin:20px 0 0;}

.hero_overlay{display:none;}
.hero{height:auto; padding-bottom:40px;}
.hero_inner{flex-wrap:wrap; flex-direction: column-reverse;}
.hero_image{width:100%; position:static; margin-bottom:-50px;}
.hero_content{width:100%; padding:0 20px; text-align:center;}
.hero_tag p{font-size:12px;}
.hero_title{font-size:40px; line-height:46px; margin-bottom:10px; text-align:left;}
.hero_title span{flex-wrap:wrap;}
.hero_text{font-size:15px; line-height:22px; text-align:left;}

.button_box{max-width:350px; margin-top:35px;}
.hero_btn{height:56px; font-size:16px; line-height:56px;}
.hero_btn img{width:15px;}
ul.button_list{margin-top:10px;}
ul.button_list li:last-child{display:none;}
ul.button_list li img{width:12px;}

.hero_strip_inner{padding:0 15px;}
.hero_strip_item{flex-wrap:wrap; justify-content:center; padding:10px 0;}
.hero_strip_item p{font-size:14px; line-height:18px; margin:7px 0 0;}
.hero_strip_divider{height:60px;}

.info_section{padding:30px 0 10px; text-align:left;}
.common_text{font-size:15px; line-height:22px; margin-top:20px;}
.info_card_wrap{gap:6px; justify-content:center; margin-top:30px;}
.info_card{width:calc(50% - 3px); padding: 12px 10px;}
.info_card_icon{width:36px; height:36px; margin-bottom:8px;}
.info_card_icon img{width:18px;}
.info_card h3{font-size:16px; line-height:20px; margin-bottom:5px;}
.info_card p{font-size:14px; line-height:20px;}
.apply_box{margin:35px auto 0;}
.apply_box_content{padding:30px 15px 35px;}
.apply_box_content h2{font-size:30px; line-height:38px; letter-spacing:0;}
.apply_box_list li{font-size:16px; line-height:20px; letter-spacing:-0.3px; padding-left:27px; margin-bottom:12px;}
.apply_box_list li:before{background-size:16px;}
.info_bottom_text{margin-top:20px;}
.info_bottom_text p{font-size:11px; line-height:17px;}

.choose_section{padding:30px 0 35px; border-top:none;}
.choose_grid{grid-template-columns: repeat(1, 1fr); margin:15px auto 0;}
.choose_text{padding:0; margin-bottom:10px;}
.choose_text p{font-size:16px; line-height:24px; text-align:center;}
.choose_card{min-height:auto; padding: 20px 65px 20px 15px;}
.choose_card h3{font-size:18px; line-height:24px; margin-bottom:8px;}
.choose_card p{font-size:15px; line-height:22px;}
.choose_card img{top:15px; right:12px; width:32px;}

.work_section{padding:30px 0 35px;}
.work_row{flex-wrap:wrap; margin:-60px auto 0;}
.work_image{width:calc(100% + 30px); margin-left:-15px;}
.work_content{width:100%;}
.work_card{padding: 20px 60px 20px 20px; border-radius:15px;}
.work_card span{font-size:14px; line-height:18px;}
.work_card h3{font-size:18px; line-height:24px; margin-bottom:8px;}
.work_card p{font-size:15px; line-height:22px;}
.work_card_icon{width:35px; height:35px; right:15px; top:15px;}
.work_card_icon img{width:18px;}

.fill_content{width:100%; padding:35px 0 40px; text-align:center;}
.fill_image{position:static; width:calc(100% + 30px); margin-left:-15px; margin-bottom:-30px;}

.pricing_section{padding:35px 0 40px;}
.pricing_row{flex-wrap:wrap; margin:30px auto 0; gap:18px;}
.pricing_time{font-size:12px;}
.pricing_card h3{font-size:18px; line-height:24px;}
.pricing_card p{font-size:15px; line-height:22px;}
.pricing_card h4{font-size:40px; line-height:40px;}
.pricing_card h4 span{font-size:14px; line-height:18px; margin-bottom:10px;}

.country_section{padding:35px 0 15px;}
.country_grid{grid-template-columns: repeat(2, 1fr);}
.country_search{margin:30px auto 35px;}
.country_search img{width:18px;}
.country_search input{height:50px; border-radius:10px; font-size:16px;}
.country_btn{font-size:16px; margin-top:35px;}

.review_section{padding:35px 0 40px;}
.review_grid{grid-template-columns: repeat(1, 1fr); margin:35px auto 0; gap:18px;}
.review_card{padding: 22px 15px 25px;}
.review_card_text{font-size:15px; line-height:22px; margin-bottom:22px;}
.review_card_verify{font-size:16px; line-height:12px;}
.review_card_verify span img{margin: -3px 1px 0 0;}

.explore_section{padding:40px 0; text-align:left; overflow-x:clip;}
.explore_flower_left{display:none;}
.explore_flower_right{top:-60px; right:-10px; width:140px;}
.explore_slider_sec{width:100%; padding-left:15px; margin:40px auto 0; overflow:hidden;}
.explore_slider{overflow:visible;}
.explore_slider .swiper-wrapper{align-items:flex-start;}
.explore_slider .swiper-slide{width:257px !important; height:344px; border-radius:22px; overflow:hidden; flex-shrink:0;}
.explore_slider .swiper-slide > img{width:100%; height:100%; object-fit:cover; display:block;}
.explore_slider .swiper-slide p{left:18px; bottom:22px; font-size:13px; line-height:13px;column-gap:5px;}
.explore_slider .swiper-slide p img{width:13px; height:13px;}
.explore_pagination{width:100%; padding:0 15px; margin-top:45px; justify-content: center;}
.explore_pagination .swiper-pagination-bullet{width:100%; max-width:55px; height:4px; margin:0 !important; border-radius:50px;}

.faq_section{padding:35px 0 20px;}
.faq-container{margin:20px 0 0;}
.acdn-heading p{font-size:18px; line-height:24px;}
.acdn-para{font-size:15px; line-height:22px;}
.accordion:before, .accordion:after{width:14px; height:2px;}

.cta_section{padding:30px 0 35px; background: url(../images/cta-bg-mob.webp) center top no-repeat #ffffff; background-size:cover;}

.footer{padding:30px 0;}
.footer_logo img{width:130px;}
.footer_desc{font-size:14px; line-height:20px;}
.footer_list li{font-size:14px;}
.footer_list li:last-child{margin-bottom:3px;}
.footer_top, .footer_col_right{flex-wrap:wrap;}
.footer_top{gap:10px;}
.footer_brand, .footer_col{width:100%;}
.footer_col_right .footer_col{padding:18px 0; border-bottom:1px solid #d5d5d5;}
.footer_col_right .footer_col:last-child{border-bottom:none; padding-bottom:0px;}
.footer_disclaimer{padding:12px; text-align:left; margin: 20px auto 0;}
.footer_disclaimer p{font-size:11px; line-height:16px;}
.footer_bottom p{font-size:12px;}
}










