* { box-sizing: border-box; margin: 0; padding: 0; }

html,body { font-size: 15px; font-family: "Poppins", sans-serif; background: #fff; color: #161616; }

body { max-width: 1920px; margin: auto; }

a { text-decoration: none; color: unset; }
ul { list-style: none; }
img { vertical-align: middle; }

p {  }

h1,h2,h3,h4,h5,h6 { color: #000; line-height: 1.2; }
section { overflow: hidden; }
button { border: 0; outline: 0; font-weight: 500; font-family: unset; }
 
.widget_section { display: block; padding: 60px 16px; position: relative; }
.container { max-width: 1140px; margin: auto; }
.visible { overflow: visible; }


:root {

	--c1 : #168e8d;
	--c2 : #0a325e;
	--c3 : #004f4c;
	--bg : #eff8ff;

	--bs  : 0px 0px 35px 0px #00000026;
	--bs1 : 0px 0px 30px 0px #0000001a;
	--bs2 : 0 3.4px 2.7px -30px #0000000f, 0 8.2px 8.9px -30px #00000012, 0 25px 40px -30px #00000033;
	--bs3 : 0px 0px 12px 0px #00000026;
	--bs4 : 0px 0px 12px #0000001a;
	--ts  : all 0.5s ease-in-out;
	--fa  : "Font Awesome 6 Pro";
	--ff1 : "Poppins", sans-serif;
	--ff2 : "Montserrat", Sans-serif;

	--br1 : 24px 24px 24px 0px;
	--br2 : 12px 12px 12px 0px;

	--cg : linear-gradient(138deg, #004f4c, #168e8d);
	--cgh : linear-gradient(to right, #168e8d, #004f4c);
/*
	--cg : linear-gradient(138deg, #1b81b1, #4ec374);
	--cgh : linear-gradient(to right, #489dd7, #0565a4);
*/
	--cgs : linear-gradient(270deg, #004f4c00 12.16%, #004f4c01 12.16%, #004f4ce6 82.49%)!important;

	--banner : linear-gradient(328deg, #004f4c00 12.16%, #004f4c01 12.16%, #004f4ce6 82.49%)!important;
}


/* ========== ========== ========== ========== ========== ========== ========== ========== ==========
												Header
========== ========== ========== ========== ========== ========== ========== ========== ========== */

.act-link { background: var(--c3)!important; }
.act-nav { color: #31CD58!important; }


/* Header */
.header { display: block; z-index: 9998; }

.topbar { position: relative; padding: 6px 0px; box-shadow: var(--bs); z-index: 9; overflow: hidden; }
.topbar:before { content: ""; position: absolute; top: 0; right: -10%;
	background: var(--c1); none repeat scroll 0 0; width: 60%; height: 100%; -webkit-transform: skewX(45deg); transform: skewX(45deg); z-index: -1; }

.topbar_row { display: flex; justify-content: space-between; align-items: center; }
.topbar_col { display: block;  }

.topbar_col:first-child { width: 30%; }
.topbar_col:last-child  { width: 70%; }

.logo { display: block; width: 250px; }
.logo img { width: 100%; height: auto; }

.top__ { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.top__btn { display: flex; align-items: center; gap: 9px; }
.top__icon { display: block; width: 42px; height: 42px; line-height: 42px; text-align: center; background: #fff; border-radius: var(--br2); }
.top__icon i { font-size: 24px; color: var(--c3); line-height: unset; }
.top__text { color: #fff; }
.top__text h3 { font-size: 14px; color: unset; }
.top__text p  { margin-top: 4px; }

@media all and (max-width:992px) {
	.topbar { box-shadow: unset; }
	.topbar:before { display: none; }
	.logo { width: 216px; }
	.top__ { display: none; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.topbar:before { width: 74%; }
	.logo { width: 216px; }
}


/* Navbar */
.navbar { display: block; padding: 9px 0px; background: var(--c3); color: #fff; }

.nav { width: 100%; z-index: 999; position: relative; box-shadow: var(--bs); transition: var(--ts); }
.navScrolled {  position: fixed!important; top: 0; transition: var(--ts); }

.nav_area { max-width: 1140px; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.nav_menu { display: flex; gap: 20px; }
.nav_menu li { display: block; position: relative; }
.nav_menu li a,
.nav_menu li label { display: block; padding: 12px 0px; transition: var(--ts); font-weight: 500; }

/* DropDown */
.dropdown input { display: none; }
.dropdown:hover > ul { opacity: 1; visibility: visible; transform: translateY(0px); }
.sub_menu { opacity: 0; visibility: hidden; width: 240px; position: absolute; top: 100%; left: 0; right: 0;
	background: #fff; color: #000; box-shadow: 0 0 10px #00000033; border-top: 3px solid var(--c1); transform: translateY(10px); transition: all 0.5s ease; z-index: 9; }
.sub_menu li a { display: block; padding: 9px 16px; font-size: 14px; font-weight: 500; }
.sub_menu li a:hover { background: #dbe8ff; }

/* ON OFF */
.btn_ON, .btn_OFF { display: none; }
.btn_ON button,
.btn_OFF button { display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; font-size: 26px; background: var(--c1); color: #fff; }

@media all and (max-width:992px) {
	.header { display: flex; justify-content: space-between; align-items: center;
		width: 100%; position: sticky; top: 0; background: #fff; padding: 0px 16px; box-shadow: var(--bs); }

	.nav { width: fit-content!important; }
	.navScrolled { position: relative!important; }

	.btn_ON { display: block; }
	.btn_OFF { display: flex; padding: 16px; justify-content: flex-end; }

	.navbar { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: #00000080; padding: 0px; transition: var(--ts); z-index: 999; }

	.nav_area { display: block; width: 80%; height: 100%; margin: unset; background: #fff; overflow-x: auto; }

	.nav_menu { flex-direction: column; color: #000; gap: 0px; }
	.nav_menu li a, .nav_menu li label { padding: 12px 16px; }
	.nav_menu li+li { border-top: 1px solid #3333331a;}
	.sub_menu { width: 100%; transform: translateY(0px); border-top: 0; box-shadow: 0 0 10px #fff0; }
	.dropdown:hover > ul { opacity: 0; visibility: hidden; transform: translateY(0px); }
	.toggle:checked ~ .sub_menu { opacity: 1; visibility: visible; position: relative; }
	
}

/* LOGIN */
.login { display: block; padding: 12px 24px; position: relative; background: var(--c1); color: #fff; border-radius: var(--br2); }
.btn_dropdown { display: block; position: relative; }
.btn_dropdown input { display: none; }
.btn_dropdown:hover > ul { opacity: 1; visibility: visible; transform: translateY(0px); }

.sub_dropdown { opacity: 0; visibility: hidden; width: 160px; position: absolute; top: 100%; right: 0;
	background: #fff; color: #000; box-shadow: 0 0 10px #00000033; border-top: 3px solid var(--c1); transform: translateY(10px); transition: all 0.5s ease; z-index: 9; }
.sub_dropdown li a { display: block; padding: 9px 16px; font-size: 14px; font-weight: 500; }
.sub_dropdown li a:hover { background: #dbe8ff; }

@media all and (max-width:992px) {
	.btn_dropdown { width: 100%; }
	.sub_dropdown { width: 100%; transform: translateY(0px); border-top: 0; box-shadow: 0 0 10px #fff0; }
	.btn_dropdown:hover > ul { opacity: 0; visibility: hidden; transform: translateY(0px); }
	#login:checked ~ .sub_dropdown { width: 100%; opacity: 1; visibility: visible; position: relative; left: 0; }
	.login { margin-left: 16px; display: inline-block; }
}


 /* Popup styles */
#popup { display: none; justify-content: space-around; align-items: center; padding: 16px;
	position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #00000080; z-index: 1000; }
#popup iframe { width: 100%; border: none; border-radius: 12px; }
#popup-header { position: relative; width: 100%; max-width: 700px; height: 100%; max-height: 500px; }
#close-btn { width: 32px; height: 32px; line-height: 32px; text-align: center;
	position: absolute; top: -34px; right: -34px; background: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 16px; }

@media all and (max-width:480px) {
	#close-btn { top: -34px; right: 0; }
}


.btn_1,
.btn_2 { display: inline-block; border-radius: 9px 9px 9px 0px; padding: 9px 32px; font-weight: 500; transition: var(--ts); }

.btn_1 { background: var(--cg); color: #fff; border: 1px solid var(--c1); font-size: 15px; }
.btn_1:hover { background: var(--cgh); }

.btn_2 { background: #fff; color: var(--c3); border: 1px solid #fff; }
.btn_2:hover { background: #fff0; color: #fff; }



.section_title { display: block; text-align: center; margin-bottom: 32px; }
.title { display: inline-block; background: #e5fff9; color: #007f61; border-left: 2px solid #007f61; padding: 6px; margin-bottom: 9px; }
.section_title h2 { font-size: 40px; font-weight: 400; color: var(--c3); }
.section_title h2 span { font-weight: 700; color: var(--c3); }
.section_title p { margin-top: 16px; }

.section_title_ {  }
.section_title_ .title { display: inline-block; background: #e5fff9; color: #007f61; border-left: 2px solid #007f61; padding: 6px; margin-bottom: 9px; }
.section_title_ h2 { font-size: 40px; font-weight: 400; color: var(--c3); }
.section_title_ h2 span { font-weight: 700; color: var(--c3); }
.section_title_ p { margin-top: 16px; }

@media all and (max-width:480px) {
	.section_title h2, .section_title_ h2 { font-size: 30px; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.section_title h2, .section_title_ h2 { font-size: 34px; }
}




/* ---------- ----- About ----- ---------- */
.about__row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 24px; }
.about__col { display: block; width: 100%; }
.about__text { display: block; }
.about__text h3 { font-size: 32px; }
.about__text p { margin-top: 16px; }
.about__text ul { display: block; padding-left: 24px; margin-top: 16px; list-style-type: disc; }
.about__text button { margin-top: 24px; }


.about__text ul li+li { margin-top: 12px; }
.about__image { display: block; margin: auto; width: 90%; border-radius: var(--br1); overflow: hidden; }
.about__image img { width: 100%; height: auto; }

@media all and (max-width: 480px) {
	.about__row { grid-template-columns: repeat(1, 1fr); }
	.about__text h3 { font-size: 26px; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.about__text h3 { font-size: 28px; }
}


/* ---------- ----- Mission & Vision ----- ---------- */
.mv_title { display: block; color: #fff; text-align: center; margin-bottom: 32px; }
.mv_title h2 { font-size: 32px; color: unset; }
.mv_title p { margin-top: 12px; }

.mv_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
.mv_col { display: block; width: 100%; padding: 32px 16px; background: #fff; box-shadow: var(--bs); border-radius: var(--br2); }

.mission, .vision {  }
.mission i, .vision i { font-size: 32px; margin-bottom: 16px; color: var(--c3); }
.mission h3, .vision h3 { font-size: 22px; color: var(--c3); }
.mission p { font-size: 14px; margin-top: 12px; }
.vision p { margin-top: 12px; }

@media all and (max-width: 480px) {
	.mv_title h2 { font-size: 26px; }
	.mv_row { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
	.mv_title h2 { font-size: 28px; }
}


/* ---------- ----- Choose ----- ---------- */
.choose_row { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 24px; }
.choose_col { display: block; width: 100%; padding: 24px 16px; text-align: center; background: #fff; border-radius: var(--br2); box-shadow: var(--bs); }
.choose_icon { display: inline-block; width: 52px; height: 52px; line-height: 52px;
	text-align: center; border-radius: 50%; background: var(--c3); color: #fff; border: 1px solid var(--c3);  }
.choose_icon i { font-size: 24px; line-height: unset; }
.choose_text { display: block; margin-top: 20px; }
.choose_text h3 {  }
.choose_text p  { margin-top: 12px; }

@media all and (max-width: 480px) {
	.choose_row { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
	.choose_row { grid-template-columns: repeat(2, 1fr); }
}



/* ---------- ----- Types Claims ----- ---------- */
.types__row { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 32px; }
.types__col { display: block; width: 100%; background: #fff; text-align: center; box-shadow: var(--bs); border-radius: var(--br1); overflow: hidden; }
.types__col >* { transition: var(--ts); }

.types__icon { display: block; width: 100%; }
.types__icon img { width: 100%; height: auto; }

.types__icon i { font-size: 24px; line-height: unset; }
.types__text { display: block; padding: 24px 16px; }
.types__text h3 {  }
.types__text p  { margin-top: 12px; }
.types__text button { margin-top: 20px; }

@media all and (max-width: 480px) {
	.types__row { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
	.types__row { grid-template-columns: repeat(2, 1fr); grid-gap: 16px; }
}


/* ---------- ----- Choose Claims ----- ---------- */
.choose__row { display: flex; flex-wrap: wrap; gap: 16px; }
.choose__col { display: block; width: 100%; padding: 24px 16px; background: #fff; text-align: center; box-shadow: var(--bs); border-radius: var(--br2); }
.choose__col >* { transition: var(--ts); }
.choose__col:nth-child(1) { flex: 1 1 calc(33.333% - 16px); }
.choose__col:nth-child(2) { flex: 1 1 calc(33.333% - 16px); }
.choose__col:nth-child(3) { flex: 1 1 calc(33.333% - 16px); }
.choose__col:nth-child(4) { flex: 1 1 calc(50% - 16px); }
.choose__col:nth-child(5) { flex: 1 1 calc(50% - 16px); }

.choose__icon { display: inline-block; width: 52px; height: 52px; line-height: 52px;
	text-align: center; border-radius: 50%; background: var(--c3); color: #fff; border: 1px solid var(--c3);  }
.choose__icon i { font-size: 24px; line-height: unset; }
.choose__text { display: block; margin-top: 20px; }
.choose__text h3 {  }
.choose__text p  { margin-top: 12px; }

.choose__col:hover .choose__icon { background: #fff; color: var(--c3); }
.choose__col:hover h3 { color: var(--c3); }

@media all and (max-width: 480px) {
	.choose__col { flex: 1 1 100%!important; }
}

@media (min-width: 500px) and (max-width: 992px) {
	
}





















/* ---------- ----- Page Banner ----- ---------- */
.banner_page { background: url('assets/images/page-header-bg.jpg')no-repeat center / cover; z-index: 1; }
.banner_page:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background: var(--banner); z-index: -1;  }

.banner_info { width: 50%; padding: 80px 0px; }
.banner_info h1 { font-size: 52px; color: #fff; }
.banner_info h1 span { display: none; }
.banner_info ul { display: inline-flex; align-items: center; gap: 9px; color: #fff; }

@media all and (max-width: 480px) {
	.banner_page { background-attachment: unset; }
	.banner_info { width: 100%; padding: 40px 0px; }
	.banner_info h1 { font-size: 34px; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.banner_page { background-attachment: unset; }

	.banner_info { width: 100%; padding: 40px 0px; }
}








/* ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ==========
													BLOG PAGE
========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== */

/* ---------- ----- Blog Banner ----- ---------- */
.blog__page { background: url('assets/images/page-header-bg.jpg')no-repeat center / cover; z-index: 1; }
.blog__page:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background: var(--banner); z-index: -1;  }

.blog__info { width: 100%; text-align: center; padding: 60px 0px; }
.blog__info h1 { font-size: 48px; color: #fff; font-weight: 600; }
.blog__info h1 span { display: none; }
.blog__info ul { display: inline-flex; align-items: center; gap: 9px; color: #fff; margin-top: 12px; }

@media all and (max-width: 480px) {
	.blog__page { background-attachment: unset; }
	.blog__info { width: 100%; padding: 24px 0px; }
	.blog__info h1 { font-size: 24px; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.blog__info { width: 100%; padding: 40px 0px; }
}


/* ---------- ----- Blog ----- ---------- */
.blog_row_ { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 32px; }
.blog_col_ { display: block; width: 100%; background: #fff; box-shadow: 0 5px 30px 0 #d6d7d891; border: 1px solid #ddd; border-radius: var(--br2); overflow: hidden; }

.blog_img_ { display: block; width: 100%; }
.blog_img_ img { width: 100%; height: auto; }

.blog_text_ { padding: 20px; }
.blog_text_ ul { display: flex; justify-content: space-between; margin-bottom: 16px; }
.blog_text_ ul li+li { margin-left: 16px; }
.blog_text_ ul li i { color: var(--c1); margin-right: 4px; }
.blog_text_ h3 { font-size: 18px; margin-bottom: 16px; font-weight: 600; text-align: justify; }
.blog_text_ p { text-align: justify; }
.blog_text_ a { margin-top: 24px; }

@media all and (max-width: 480px) {
	.blog_row_ { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 1140px) {
	.blog_row_ { grid-gap: 16px; }
}



/* ---------- ----- Blog Pages ----- ---------- */
.blog__row { display: flex; justify-content: space-between; gap: 32px; }
.blog__col { display: block; position: relative; }
.blog__col:nth-child(1) { width: 68%; }
.blog__col:nth-child(2) { width: 32%; }

@media all and (max-width: 498px) {
	.blog__row { flex-direction: column; }
	.blog__col:nth-child(1) { width: 100%; }
	.blog__col:nth-child(2) { width: 100%; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.blog__row { flex-direction: column; }
	.blog__col:nth-child(1) { width: 100%; }
	.blog__col:nth-child(2) { width: 100%; }
}

/* Blog Article */
.article_image { display: block; width: 100%; border-radius: var(--br1); overflow: hidden; margin-bottom: 32px; }
.article_image img { width: 100%; height: 45vh; object-fit: cover; }

.article { display: block; }
.article h1 { font-size: 32px; color: var(--c3); }
.article h2 { font-size: 24px; font-weight: 500; margin-top: 12px; }
.article h3 { font-size: 20px; color: var(--c3); font-weight: 500; }
.article h4 { font-size: 16px; color: var(--c3); margin-top: 12px; }
.article p { text-align: justify; margin-top: 12px; }
.article a { text-decoration: underline dotted #000; color: #000; }
.article a:hover { color: var(--c3); text-decoration: underline dotted var(--c1); }
.article ul { list-style-type: disc; padding-left: 24px; margin-top: 12px; }
.article ul li+li { margin-top: 9px; }

.article b { font-weight: 500; }
.article hr { margin: 32px 0px; color: #ddd; }

.features { list-style-type: disc; padding-left: 24px; margin-top: 12px;  }
.features li+li { margin-top: 9px; }

.choose { list-style-type: decimal; padding-left: 24px; margin-top: 12px; }
.choose li+li { margin-top: 9px; }
.choose li b { display: block; }

@media all and (max-width: 498px) {
	.article h1 { font-size: 24px; }
}

/* Blog SideBar */
.sticky_side { position: sticky; top: 100px; height: fit-content; overflow: visible; }
.blog_sidebar { display: flex; flex-direction: column; gap: 16px;
	background: #fff; box-shadow: var(--bs); padding: 24px 16px; border-radius: var(--br1); }

/* Blog Recent Posts */
.recent_posts {  }
.recent_posts h3 { font-size: 22px; margin-bottom: 16px; }
.recent_post+.recent_post { padding-top: 16px; margin-top: 16px; border-top: 1px solid #ddd; }
.recent_post_thumb  { display: table-cell; width: 100px; }
.recent_post_thumb img { width: 100%; height: auto; }
.recent_post_info { display: table-cell; padding: 0 0 0 12px; vertical-align: top; }
.recent_post_info h3 { font-size: 16px; }
.recent_post_info ul { display: flex; font-size: 12px; }
.recent_post_info ul li+li { margin-left: 8px; }
.recent_post_info ul li i { color: var(--c1); margin-right: 4px; }

/* Blog Gallery */
.blog_gallery { display: block; }
.blog_gallery h3 { font-size: 22px; margin-bottom: 16px; }
.blog_gallery .images { display: flex; flex-wrap: wrap; }
.blog_gallery .images img { width: 33.33%; padding: 7px; }

/* Blog Social */
.blog_social { display: block; }
.blog_social h3 { font-size: 22px; margin-bottom: 16px; }
.blog_social i { width: 40px; height: 40px; line-height: 40px; text-align: center; background: #e7e7e7; border-radius: 4px; transition: 0.5s; }
.blog_social i:hover { background: var(--c1); color: #fff; }

@media all and (max-width: 498px) {

}

@media (min-width: 500px) and (max-width: 992px) {

}






/* ---------- ----- Contact ----- ---------- */
.contact_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 42px; }
.contact_col { display: block; width: 100%; }

.contact_head {  }
.contact_head .title { display: inline-block; background: #e5fff9; color: #007f61; border-left: 2px solid #007f61; padding: 6px; margin-bottom: 9px; }
.contact_head h2 { font-size: 28px; font-weight: 400; color: var(--c1); }
.contact_head h2 span { font-weight: 700; color: var(--c1); }
.contact_head p { margin-top: 16px; }

.contact_box_ { display: flex; align-items: center; padding: 32px 0px; }
.contact_box_ i { font-size: 24px; color: var(--c1); }
.contact_box_ p { margin-left: 12px; }

.contact_info { display: block; width: 100%; padding: 32px 24px;
	position: relative; border-radius: 24px 24px 24px 0px; background: url(assets/images/contact-cta-bg-img.jpg)no-repeat center / cover; overflow: hidden; z-index: 1; }
.contact_info:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background: var(--cgs); z-index: -1;  }

.contact__box+.contact__box { margin-top: 20px; padding-top: 20px; border-top: 1px solid #fff; }
.contact__box { width: 286px; display: flex; align-items: center; gap: 20px; color: #fff!important; }
.contact__icon { font-size: 38px; }
.contact__text h3 { font-size: 16px; font-weight: 400; color: unset }
.contact__text p { font-size: 18px; font-weight: 600; }

.contact_form { display: block; background: #ebeff0; padding: 32px; border-radius: var(--br1);  }
.contact_form h2 { font-size: 32px; }
.contact_form p { margin-top: 16px; }
.contact_form form { display: block;  margin-top: 32px;  }
.form_group { display: flex; gap: 16px; margin-top: 18px; }
.form_group input,
.form_group select,
.form_group textarea { width: 100%; padding: 16px; background: #fff; border: 1px solid #f3f5fd; outline: 0; border-radius: var(--br2);  }
.form_group textarea { font-family: var(--ff1); }
.form_group button { width: 100%; padding: 16px 48px; border: 0; outline: 0; border-radius: var(--br2); background: var(--c2); color: #fff; transition: var(--ts); }
.form_group button:hover { background: var(--c1); }

@media all and (max-width: 480px) {
	.contact_row { grid-template-columns: repeat(1, 1fr); }

	.contact_head h2 { font-size: 30px; }

	.contact_info { padding: 34px 16px; }
	.contact__box { width: 190px; gap: 16px; }
	.contact__icon { font-size: 30px; }
	.contact__text h3 { font-size: 14px; }

	.contact_form { padding: 32px 16px; }
	.contact_form h2 { font-size: 30px; }
	.form_group { flex-direction: column; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.contact_row { grid-template-columns: repeat(1, 1fr); }

}


/* ---------- ----- MAP ----- ---------- */
.section_map { display: block; }
.map_area { display: block; width: 100%; height: 40vh; overflow: hidden; }
.map_area iframe { display: block; width: 100%; height: 100%; border: 0; }

@media all and (max-width: 480px) {
	
}














.footer { background: url('assets/images/footerbg.jpg') no-repeat center / cover; }
.upper_footer { display: block; width: 100%; padding: 60px 16px; background: var(--c3); }
.footer_row { display: flex; flex-wrap: wrap; }
.footer_col { display: block; }
.footer_col:nth-child(1) { flex: 1 1 calc(18% - 16px); }
.footer_col:nth-child(2) { flex: 1 1 calc(18% - 16px); }
.footer_col:nth-child(3) { flex: 1 1 calc(18% - 16px); }
.footer_col:nth-child(4) { flex: 1 1 calc(18% - 16px); }
.footer_col:nth-child(5) { flex: 1 1 calc(28% - 16px); }

.footer_col h3 { color: #fff; font-size: 22px; font-weight: 600; }
.footer_links { display: block; margin-top: 24px; }
.footer_links li+li { margin-top: 12px; }
.footer_links li { display: block; position: relative; padding-left: 20px; }
.footer_links li:before { content: '\f324';
	position: absolute; left: 0; top: 5px; font-family: var(--fa); font-size: 12px; font-weight: 900; color: #fff; transition: var(--ts); }
.footer_links li a { display: block; position: relative; transition: var(--ts); color: #e9e9e9; }
.footer_links li a:hover { color: #fff; }
.footer_links li:hover:before { color: var(--c1); }
.footer_links li:hover { color: #fff; }

.get_links { display: block; margin-top: 24px; }
.get_links li+li { margin-top: 20px; }
.get_links li { display: block; position: relative; padding-left: 42px; }
.get_links li:before { position: absolute; left: 0; top: -4px; width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 14px;
	font-family: var(--fa); font-weight: 900; background: var(--c1); color: #fff; transition: var(--ts); border: 1px solid var(--c1); border-radius: 50%; }
.get_links li:nth-child(1):before { content: '\f095'; }
.get_links li:nth-child(2):before { content: '\f0e0'; }
.get_links li:nth-child(3):before { content: '\f3c5'; }
.get_links li:hover:before { background: #fff0; }
.get_links li a { display: block; position: relative; transition: var(--ts); color: #e9e9e9; }
.get_links li a:hover { color: #fff; }

.lower_footer { display: block; background: var(--c3); }
.copyright_row { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-top: 1px solid #e9e9e940; }
.copyright { display: block; }
.copyright p { color: #e9e9e9; }
.copyright p a { color: #fff; font-weight: 600; transition: var(--ts); }
.copyright p a:hover { letter-spacing: 1px; }
.footer_social { display: flex; gap: 9px; }
.footer_social a { display: block; width: 38px; height: 38px; line-height: 38px;
	text-align: center; border-radius: 50px; background: var(--c1); color: #fff; border: 1px solid var(--c1); transition: var(--ts); }
.footer_social a:hover { background: #fff0; }

@media all and (max-width:480px) {
	.footer_row { gap: 24px; }
	.footer_col { flex: 1 1 100%!important; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.footer_row { gap: 16px; }
	.footer_col:nth-child(1) { flex: 1 1 calc(33.33% - 16px); }
	.footer_col:nth-child(2) { flex: 1 1 calc(33.33% - 16px); }
	.footer_col:nth-child(3) { flex: 1 1 calc(33.33% - 16px); }
	.footer_col:nth-child(4) { flex: 1 1 calc(50% - 16px); }
	.footer_col:nth-child(5) { flex: 1 1 calc(50% - 16px); }
}




/* Legal Pages --> Privacy Policy | Terms & Conditions | Disclaimer And Also Partner With Us */
.article_legal { display: block; max-width: 800px; width: 100%; margin: auto; padding: 42px 24px; border: 1px solid #e5e5e5; border-radius: 16px; }
.article_legal .hr { margin: 32px 0px; color: #ddd; }
.article_legal h1 { font-size: 38px; color: var(--c3); }
.article_legal h1 span { display: none; }
.article_legal h3 { font-weight: 600; color: var(--c1); }
.article_legal p { margin-top: 16px; }
.article_legal ul { padding-left: 22px; list-style-type: disc; margin-top: 16px; }
.article_legal ul li+li { margin-top: 9px; }

.article_legal ol { padding-left: 22px; margin-top: 16px; }
.article_legal ol li b { display: block; }
.article_legal ol li+li { margin-top: 9px; }

.article_legal a { text-decoration: underline; transition: var(--ts); }
.article_legal a:hover { color: var(--c1); }

/**/
.disclaimer { padding: 40px 16px; }
@media all and (max-width:480px) {
	.disclaimer { padding: 0px; }
}