* { box-sizing: border-box; margin: 0; padding: 0; }

html,body { font-size: 16px; font-family: "Poppins", sans-serif; background: #fff; color: #29484f; line-height: 1.4em; }

body { max-width: 1920px; margin: auto;  }

a { text-decoration: none; color: unset; }
ul { list-style: none; }
img { vertical-align: middle; }

p { font-size: 16px; }

h1,h2,h3,h4,h5,h6 { color: #000; line-height: 1.2; }
section { overflow: hidden; }
 
.container { max-width: 1140px; margin: auto; }
.widget_section { display: block; padding: 60px 16px; position: relative; }

button { border: 0; outline: 0; font-family: var(--ff); letter-spacing: 1px; }


:root {

	--c1 : #00437f;
	--c2 : #00983e;
	--c3 : #00e75e;

	--bs: 0 3px 15px 0 #0000001a;
	--bs2 : 0 3.4px 2.7px -30px #0000000f, 0 8.2px 8.9px -30px #00000012, 0 25px 40px -30px #00000033;
	--ts : all 0.5s ease-in-out;
	--ff : "Font Awesome 6 Pro";
	--fs : 40px;

	--rg: radial-gradient(#00983e, #00437f);
}




/* ========== ========== ===== Header Section ===== ========== ========== */

/* ---------- Top Bar ---------- */
.topbar { width: 100%; display: block; position: relative; border-bottom: 1px solid #f2f2f2; background: var(--c1); color: #000; }
.topbar_row { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.topbar_row a i { display: block; width: 36px; height: 36px; line-height: 36px; text-align: center; transition: var(--ts); }

.topbar_info { display: flex; align-items: center; gap: 16px; }
.topbar_info a { display: flex; align-items: center; color: #fff; }
.topbar_info a i { color: var(--c3); }

.topbar_social { display: flex; justify-content: space-around; padding: 6px 0; color: #fff; }
.topbar_social a:hover i { background: var(--c2); }
.topbar_social a+a { border-left: 1px solid #ffffff80; }

@media all and (max-width:480px) {
	.topbar:before { width: 60%; }
	.topbar_info a p { display: none; }
}


/* ---------- NAV BAR ---------- */
.act-nav { color: var(--c1); }
.nav_btn { margin-left: 24px; }

.header { display: block; width: 100%; position: sticky; top: 0; background: #fff; box-shadow: var(--bs); z-index: 999; }
.nav-container { display: flex; justify-content: space-between; align-items: center;
	padding: 4px 0px; max-width: 1140px; margin: auto; position: relative; }

.logo { width: 360px; }
.logo img { width: 100%; height: auto; }

.navbar { display: block; }
.nav_area { display: flex; align-items: center; font-size: 14px; }

.nav_links { display: flex; }
.nav_links li { position: relative; }
.nav_links li a,
.nav_links li label { display: block; padding: 8px 12px; transition: var(--ts); font-weight: 600; }


.sub_link input { display: none; }
.sub_link:hover .sub_menu { display: block; }


/**/
.dropdown { opacity: 0; visibility: hidden; width: 260px; 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_link:hover > ul { opacity: 1; visibility: visible; transform: translateY(0px); }
.sub_link .dropdown li a { display: block; padding: 12px 16px; font-weight: 500; }
.dropdown li a:hover { background: #dbe8ff; }


.btn_OC { display: none; }
.btn_OC button { display: block; width: 40px; height: 40px; line-height: 40px;
	text-align: center; font-size: 26px; border: 0; outline: 0; background: var(--c1); color: #fff; }

/* Request */
.btn_nav { display: block; width: 160px; height: 50px; background: var(--c1); color: #fff; position: relative; border-radius: 4px; }
.btn_nav:before { content:"Request Quote"; position: absolute; top: 0; display: block; width: 100%; height: 50px; line-height: 50px; text-align: center; transition: var(--ts); }
.btn_nav:hover:before { letter-spacing: 0.3px; }

@media all and (max-width:480px) {
	.btn_OC { display: flex; padding: 16px; justify-content: flex-end; }

	.logo { padding-left: 16px; }

	.navbar { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: #00000080; transition: var(--ts); }
	.nav_area { display: block; width: 80%; height: 100%; background: #fff; overflow-x: auto; }
	.nav_links { display: block; }
	.nav_links li a, .nav_links li label { padding: 12px 16px; }
	.nav_links li+li { border-top: 1px solid #3333331a;}

	.dropdown { width: 100%; transform: translateY(0px); border-top: 0; box-shadow: 0 0 10px #fff0; }
	.sub_link:hover > ul { opacity: 0; visibility: hidden; transform: translateY(0px); }

	.toggle:checked ~ .dropdown { opacity: 1; visibility: visible; position: relative; }


}






/* ---------- ----- Section Headings ----- ---------- */
.heading_center { display: block; margin-bottom: 32px; text-align: center; }
.heading_center h2 { display: block; font-size: 38px; color: var(--c1); }
.heading_left { display: block; margin-bottom: 32px; }
.heading_left h2 { display: block; font-size: 28px; color: var(--c1); }

.page_head_icon { display: inline-block; width: 160px; margin-top: 6px; }
.page_head_icon img { width: 100%; height: auto; }

@media all and (max-width:480px) {
	.heading_center {  }
	.heading_left h2 , .heading_center h2 { font-size: 28px; }
}



/* ---------- Page Banner ---------- */
.pagebanner { background: var(--rg); }
.pagebanner_row { display: flex; justify-content: space-between; align-items: center; }
.pagebanner_col { display: block; width: 100%; position: relative; }

.page_content h1 { font-weight: 700; color: #fff; font-size: 3rem; }
.breadcrumb { display: inline-block; margin: 16px 0px 0px 8px; }
.breadcrumb li { display: inline-block; position: relative; font-weight: 800; color: var(--c3); text-transform: uppercase; font-size: 14px; }
.breadcrumb li i { margin-right: 4px; color: #fff; }
.breadcrumb li.pactive { color: var(--c3); }

.shapes { padding: 8px 4px; margin: 0 8px; }
.shapes::before,
.shapes::after { content: ""; font-weight: 600; display: inline-block; position: absolute; top: 6px; width: 5px; height: 5px; color: #fff; border: 2px solid #fff; border-radius: 50%; }
.shapes::before { left: 0; }
.shapes::after {right: 0;}

.page_banner_images { display: block; width: 60%; margin-left: auto; position: relative; }

.pagebanner_img { display: block; width: 100%;  }
.pagebanner_img img { width: 100%; height: auto; animation:spin 10s linear infinite; }

.pb_in_img {display: block; position: absolute; width: 100%; height: 100%;}
.pb_in_img img { width: 100%; height: auto; }


@media all and (max-width:480px) {
	.pagebanner_row { flex-direction: column; justify-content: center; gap: 24px; padding-top: 50px; }
	.pagebanner_col { text-align: center; }
	.pagebanner_col h1 { font-size: 2rem; }
	.pagebanner_img { margin: auto; }
	.page_banner_images { width: 60%; margin: auto; }
}

@keyframes spin { 
	from {  transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}



/* ========== ===== ===== About Page ===== ===== ========== */

/* ---------- ----- Our Core Values ----- ---------- */
.values_row_ { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 24px; }
.values_col_ { display: block; position: relative; padding: 32px 18px; background: #e8edf4; border-radius: 12px; }

.values_col_ i { font-size: 52px; color: var(--c1); }
.values_col_ h3 { font-size: 24px; margin-top: 32px; color: var(--c1); }
.values_col_ p { text-align: justify; margin-top: 16px; }

@media all and (max-width: 480px) {
    .values_row_ { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
    .values_row_ { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- ----- About Our Founder ----- ---------- */
.about_row__ { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
.about_col__ { display: block; position: relative; }
.about_col__ img { width: 100%; height: auto; }
.about_col__ p+p { margin-top: 16px; }

@media all and (max-width: 480px) {
    .about_row__ { grid-template-columns: repeat(1, 1fr); }
}


/* ---------- ----- International Visits ----- ---------- */
.carousel_founder { width: 100%;  }
.founder_cell { width: 44%; margin: 25px 9em 25px 0px ; margin-right: 9em; }
.founder_info { width: 100%; border-radius: 12px; background: #fff; box-shadow: var(--bs); overflow: hidden;  }
.founder_info img { width: 100%; height: auto; }

/*Flickity custom styling*/ 
.carousel_founder .founder_cell.is-selected .founder_info { box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px; }
.carousel_founder .flickity-prev-next-button { background: #1f85e3; box-shadow: 3px 3px 15px grey; }
.carousel_founder .flickity-prev-next-button .arrow { fill: white; }
.carousel_founder .flickity-prev-next-button:hover { background: black; }
.carousel_founder .flickity-page-dots { bottom: 30px; }
.carousel_founder .flickity-page-dots .dot { height: 4px; width: 40px; background: #1f85e3; margin: 0; border-radius: 0; }

@media all and (max-width: 480px) {
    .founder_cell { width: 80%; }
}

@media (min-width: 500px) and (max-width: 992px) {
    
}


/* ---------- ----- POPULAR COURSES ----- ---------- */
.section_popular { width: 100%; display: block; position: relative; padding: 80px 16px; }
.popular_carousel { display: block; }
.popular_cell { width: 33.33%; display: inline-block; overflow: hidden; padding: 16px; }

.popular_carousel .flickity-page-dots .dot { display: inline-block; width: 30px; height: 6px; margin: 0 8px; background: var(--c1); border-radius: 6px; opacity: 0.25; cursor: pointer; }
.popular_carousel .flickity-page-dots .dot.is-selected { opacity: 1; background: var(--c1); }

.popular_box { width: 100%; display: block; position: relative; background: #fff; box-shadow: var(--bs); margin-top: 24px; transition: var(--ts); border-radius: 6px; overflow: hidden; }
.popular_box_img { width: 30%; display: block; margin: auto; position: relative; padding-top: 24px; } 
.popular_box_img img { width: 100%; height: auto; filter: grayscale(100%); transition: var(--ts);
filter: invert(16%) sepia(90%) saturate(1692%) hue-rotate(190deg) brightness(97%) contrast(101%); }
.popular_box_txt { width: 100%; display: block; position: relative; padding: 24px 16px; border: 1px dashed #c4c4c4; border-top: 0; text-align: center; }
.popular_box_txt h3 { font-size: 22px; margin-bottom: 16px; line-height: 1; color: var(--c1); }
.popular_box_txt p { position: relative; text-align: center; }

.popular_btn { display: block; width: 48px; height: 48px; line-height: 48px; text-align: center; margin-top: 24px;
    background: var(--c1); color: #fff; border-radius: 50%; transition: var(--ts); position: relative; box-shadow: var(--bs); z-index: 1; overflow: hidden; }
.popular_btn i { font-size: 22px; line-height: 2.2; }

.popular_box:hover { background: var(--c1); color: #fff; margin-top: 0px; }
.popular_box:hover .popular_box_txt { border: 0; }
.popular_box:hover .popular_box_txt h3 { color: unset; }
.popular_box:hover .popular_box_txt p { color: unset; }
.popular_box:hover .popular_box_img img { filter: invert(100%) sepia(3%) saturate(11%) hue-rotate(141deg) brightness(105%) contrast(100%); }
.popular_box:hover a.popular_btn { background: #fff; color: var(--c1); }

@media all and (max-width: 480px) {
    .popular_cell { width: 100%; padding: 6px; }
}

@media (min-width: 500px) and (max-width: 992px) {
    .popular_cell { width: 50%; padding: 16px; }
}



/* ========== ===== ===== Study Abroad Page ===== ===== ========== */


.banner_uni { background: url("assets/images/banner_page.jpg") no-repeat center / cover; }

.banner_usa { background: url("assets/images/banner_usa.jpg") no-repeat center / cover; }
.banner_uk { background: url("assets/images/banner_uk.jpg") no-repeat center / cover; }
.banner_canada { background: url("assets/images/banner_canada.jpg") no-repeat center / cover; }
.banner_australia { background: url("assets/images/banner_australia.jpg") no-repeat center / cover; }
.banner_ireland { background: url("assets/images/banner_ireland.jpg") no-repeat center / cover; }
.banner_newzealand { background: url("assets/images/banner_newzealand.jpg") no-repeat center / cover; }
.banner_france { background: url("assets/images/banner_france.jpg") no-repeat center / cover; }
.banner_malta { background: url("assets/images/banner_malta.jpg") no-repeat center / cover; }
.banner_cyprus { background: url("assets/images/banner_cyprus.jpg") no-repeat center / cover; }

.banner_china { background: url("assets/images/study_mbbs_china.jpg") no-repeat center / cover; }
.banner_kazakhstan { background: url("assets/images/study_mbbs_kazakhstan.jpg") no-repeat center / cover; }
.banner_nepal { background: url("assets/images/study_mbbs_nepal.jpg") no-repeat center / cover; }
.banner_malaysia { background: url("assets/images/study_mbbs_malaysia.jpg") no-repeat center / cover; }
.banner_timorleste { background: url("assets/images/study_mbbs_timorleste.jpg") no-repeat center / cover; }
.banner_bosnia { background: url("assets/images/study_mbbs_bosnia.jpg") no-repeat center / cover; }
.banner_kyrgyzstan { background: url("assets/images/study_mbbs_kyrgyzstan.jpg") no-repeat center / cover; }
.banner_georgia { background: url("assets/images/study_mbbs_georgia.jpg") no-repeat center / cover; }
.banner_central_america { background: url("assets/images/study_mbbs_central_america.jpg") no-repeat center / cover; }




.study_pagebanner { display: block; padding: 60px 16px; width: 100%; position: relative; z-index: 1; }
.study_pagebanner:before { content: ""; display: block; width: 100%; height: 100%; background: #00000018; position: absolute; left: 0; top: 0; z-index: -1 }
.study_pagebanner .row { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.study_pagebanner .col { width: 100%; display: block; }

.study_pagebanner_info { display: block; background: #ffffffe8; padding: 24px; margin: auto; border-radius: 12px; }
.study_pagebanner_info h3 { font-size: 24px; color: var(--c1); }
.spb_info_ { margin-top: 16px; }
.spb_info_ li+li { margin-top: 12px; }
.spb_info_ li:before { content: "\f005"; font-family: var(--ff); font-weight: 900; font-size: 14px; margin-right: 8px; color: var(--c1); }

.study_page_form { width: 370px; height: 405px; margin: auto; display: block; border-radius: 12px; overflow: hidden; box-shadow: var(--bs); }
.study_page_form iframe { width: 100%; height: 100%; border: none; display: block; transition: height 0.3s ease; }

@media all and (max-width: 480px) {
	.study_pagebanner .row { flex-direction: column; }
	.study_page_form { width: 100%; }
}




/* ---------- ----- Overview ----- ---------- */
.overview_text {  }
.overview_text p { text-align: justify; }
.overview_text p+p { margin-top: 16px; }
.overview_text h3 { margin-top: 12px; }
.overview_text ul {  margin-top: 12px; list-style: disc; padding-left: 24px; }
.overview_text ul li+li { margin-top: 12px; }

.why1_col ul {  margin-top: 12px; list-style: disc; padding-left: 24px; }
.why1_col ul li+li { margin-top: 12px; }


/* ---------- ----- Why Study Abroad ----- ---------- */
.why_abroad { display: block; background: #f3f8f9; background-image: url("assets/images/bg-b.webp");  }
.why1_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; margin-bottom: 32px; }
.why1_col { display: block; width: 100%; position: relative; }
.why1_col p { text-align: justify; }
.why1_col p+p { margin-top: 16px; }
.why1_col img { width: 100%; height: auto; }
.why_img { display: block; border-radius: 8px; border: 6px solid #fff; box-shadow: var(--bs); overflow: hidden; }

.why_row2 { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 16px; }
.why_row { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 16px; }
.why_col { display: block; width: 100%; position: relative;
	padding: 24px; text-align: center; background: #fff; transition: var(--ts); box-shadow: var(--bs); border-radius: 8px; z-index: 1; }

.why_col::before, .why_col::after { content: ""; position: absolute;
	top: 0; right: 0; bottom: 0; left: 0; border-radius: 8px; transition: var(--ts); }
.why_col::before { width: 92%; height: 90%; border: 1.5px dashed #333; margin: auto; z-index: 0; }
.why_col::after { width: 100%; height: 100%; background: var(--rg); opacity: 0; z-index: -1; }

.why_col_icon { font-size: 60px; color: var(--rg); }
.why_col_text { margin-top: 16px; }
.why_col_text h3 {  }
.why_col_text p  { margin-top: 12px; text-align: justify; }

.why_col:hover { color: #fff; }
.why_col:hover h3 { color: #fff; }
.why_col:hover:before { border: 1.5px dashed #fff;  }
.why_col:hover:after { opacity: 1; }


@media all and (max-width:480px) {
	.why1_row, .why_row { grid-template-columns: repeat(1, 1fr); }
}


/* ---------- ----- Course ----- ---------- */
.course { display: block; padding: 60px 16px 0px 16px; position: relative; }
.course_row { display: flex; align-items: center; grid-gap: 24px; }
.course_col { display: block; width: 100%; }
.course_col ul { display: block; }
.course_col ul li+li { margin-top: 12px; }
.course_col ul li { position: relative; padding-left: 24px;  }
.course_col ul li:before { content: "\f00c"; font-family: "Font Awesome 6 Pro";
	font-weight: 900; font-size: 14px; margin-left: 0px; color: var(--c1); position: absolute; left: 0; }

.course_img { width: 100%; }
.course_img img { width: 100%; height: auto; }

@media all and (max-width:480px) {
	.course_row { flex-direction: column-reverse; }
}



/* ---------- ----- Top Universities ----- ---------- */
.universities_gallery { background: #eee; }
.universities_grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 24px; }
.universities_grid_item { display: block; position: relative; width: 100%; border-radius: 6px; overflow: hidden; box-shadow: var(--bs); padding: 6px; background: #fff; }
.universities_grid_item img { width: 100%; height: auto; }

@media all and (max-width:480px) {
	.universities_grid { grid-template-columns: repeat(2, 1fr); grid-gap: 8px; }
}



/* ---------- ----- Admission Process ----- ---------- */
.admission_process { background: var(--rg); }

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::after { content: ''; position: absolute; width: 6px; background: #fff; top: 0; bottom: 0; left: 50%; margin-left: -3px; }

.timeline__entry { position: relative; margin-bottom: 32px; }

.timeline__id { display: block; width: 46px; height: 46px; line-height: 43px; text-align: center; border-radius: 50%; border: 3px solid var(--c3);
	position: absolute; top: 1em; background: var(--c1); color: var(--c3); transform: translateX(-50%); left: 50%; z-index: 1; }
.timeline__id i { transform: rotate(90deg); }

.timeline__content { position: relative; display: block; width: 45%; padding: 16px; background: #fff; box-shadow: var(--bs); border-radius: 12px; }
.timeline__content:before { content: ""; position: absolute; display: block; top: 1em; left: auto; right: -1em;
	border-top: 1em solid transparent; border-bottom: 1em solid transparent; border-left: 1em solid #fff; border-right: none; }

.timeline__content--flipped {margin-left: 55%; }
.timeline__content--flipped:before { left: -1em; right: auto; border-left: none; border-right: 1em solid #fff; }

.timeline__content h3 { font-size: 18px; }
.timeline__content p { font-size: 14px; margin-top: 12px; }
.timeline__content ul { display: block; margin: 12px 0px 0px 24px; list-style: disc; font-size: 14px; }

@media all and (max-width:480px) {
	.timeline::after { left: 23px; }
	.timeline__id { left: 0; transform: translateX(0%) }

	.timeline__content { width: 80%; margin-left: auto; }
	.timeline__content:before { left: -1em; right: auto; border-left: none; border-right: 1em solid #fff; }

	.timeline__content--flipped { margin-left: auto; }
}



/* ---------- ----- Admission Requirements ----- ---------- */
.admission_requirements { display: block; width: 100%; padding: 60px 16px 0px 16px; }
.ad_req_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
.ad_req_col { display: block; position: relative; }
.ad_req_col p { text-align: justify; }
.ad_req_col h4 { margin-top: 12px; }
.ad_req_col ul { display: block; margin-top: 12px; }
.ad_req_col ul li { position: relative; padding-left: 24px; }
.ad_req_col ul li + li { margin-top: 8px; }
.ad_req_col ul li:before { content: "\f058"; font-family: "Font Awesome 6 Pro";
	font-weight: 900; font-size: 14px; margin-left: 0px; color: var(--c1); position: absolute; left: 0; }

.ad_req_col ul li ul { list-style: disc; padding-left: 24px; }
.ad_req_col ul li ul li { padding-left: 0; }
.ad_req_col ul li ul li:before { display: none; }
.ad_req_col img { width: 100%; height: auto; }

@media all and (max-width: 480px) {
	.ad_req_row { grid-template-columns: repeat(1, 1fr); }

}



/* ---------- ----- Entry Requirements & Deadlines, Intakes ----- ---------- */
.entry_requirements	{ background: #dbe8ff; }

.table_area { width: 100%; background: #fff; }
.req_table { width: 100%; border-collapse: collapse; }
.req_table tr:nth-child(odd) { background: #dddddd; }
.req_table tr th { background: var(--c1); color: #fff; }
.req_table tr th:first-child,
.req_table tr td:first-child { text-align: left; }

.req_table th,
.req_table td { border: 1px solid #cbcbcb; text-align: center; padding: 8px; }

@media all and (max-width: 480px) {
	.table_area { overflow-x: auto; }
}





.anim-btn, .univ-btn { display: inline-block; padding: 12px 16px; margin-top: 24px;
	background: #333; color: #fff; cursor:pointer;border-radius: 50px; border: 0; outline: 0; letter-spacing:1px; position: relative; }
.anim-btn h4, .univ-btn h4 { font-size: 14px; font-weight: 500; color: unset; text-align: center; }
.anim-btn p, .univ-btn p { font-size: 14px; font-weight: 500; color: unset; text-align: center; }

@keyframes bounce { 0%{transform: scale(1);} 50%{transform: scale(1.1);} 100%{transform: scale(1);} }

.anim-btn { width: 194px; }
.univ-btn { width: 240px; }


.anim-btn .shape { width: 194px; height: 53px; position: absolute; top: 0; left: 0; }
.univ-btn .shape { width: 240px; height: 53px; position: absolute; top: 0; left: 0; }
.anim-btn .shape li, .univ-btn .shape li { content:""; position: absolute; margin: auto; height: 8px; width: 2px; background: var(--c1); opacity: 0; }
.anim-btn .shape li:nth-of-type(1), .univ-btn .shape li:nth-of-type(1) { left: 0; right: 0; top: -20px;    }
.anim-btn .shape li:nth-of-type(2), .univ-btn .shape li:nth-of-type(2) { left: 0; right: 0; bottom: -20px; }
.anim-btn .shape li:nth-of-type(3), .univ-btn .shape li:nth-of-type(3) { top:0; bottom: 0; left: -10px; }
.anim-btn .shape li:nth-of-type(4), .univ-btn .shape li:nth-of-type(4) { top:0; bottom: 0; right: -10px; }
.anim-btn .shape li:nth-of-type(5), .univ-btn .shape li:nth-of-type(5) { top: -20px; left: -50%; right: 0; transform:rotate(-30deg); }
.anim-btn .shape li:nth-of-type(6), .univ-btn .shape li:nth-of-type(6) { top: -20px; left: 0; right: -50%; transform:rotate(30deg); }
.anim-btn .shape li:nth-of-type(7), .univ-btn .shape li:nth-of-type(7) { bottom: -20px; right: 0; left: -50%; transform:rotate(30deg); }
.anim-btn .shape li:nth-of-type(8), .univ-btn .shape li:nth-of-type(8) { bottom: -20px; left: 0; right: -50%; transform:rotate(-30deg); }

.anim-btn:hover, .univ-btn:hover { animation: bounce 0.4s ease-out 1; background: var(--c1); }
.anim-btn:hover .shape li:nth-of-type(1), .univ-btn:hover .shape li:nth-of-type(1) { animation: anim1 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(2), .univ-btn:hover .shape li:nth-of-type(2) { animation: anim2 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(3), .univ-btn:hover .shape li:nth-of-type(3) { animation: anim3 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(4), .univ-btn:hover .shape li:nth-of-type(4) { animation: anim4 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(5), .univ-btn:hover .shape li:nth-of-type(5) { animation: anim5 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(6), .univ-btn:hover .shape li:nth-of-type(6) { animation: anim6 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(7), .univ-btn:hover .shape li:nth-of-type(7) { animation: anim7 0.5s ease-out 1; }
.anim-btn:hover .shape li:nth-of-type(8), .univ-btn:hover .shape li:nth-of-type(8) { animation: anim8 0.5s ease-out 1; }


@keyframes anim1 {
  0%{transform: scaleY(0.5);opacity: 0;}
  50%{transform: translateY(-10px) scaleY(1.4); opacity: 1;}
  100%{transform: translateY(-20px) scaleY(0.5);opacity: 0;}
}
@keyframes anim2 {
  0%{transform: scaleY(1);opacity: 0;}
  50%{transform: translateY(10px) scaleY(1.4); opacity: 1;}
  100%{transform: translateY(20px) scaleY(0.5);opacity: 0;}
}
@keyframes anim3 {
  0%{transform: rotate(90deg) scaleX(0.5);opacity: 0;}
  50%{transform: rotate(90deg) translateY(10px) scaleX(1.4); opacity: 1;}
  100%{transform: rotate(90deg) translateY(20px) scaleX(0.5);opacity: 0;}
}
@keyframes anim4 {
  0%{transform: rotate(90deg) scaleX(0.5);opacity: 0;}
  50%{transform: rotate(90deg) translateY(-10px) scaleX(1.4); opacity: 1;}
  100%{transform: rotate(90deg) translateY(-20px) scaleX(0.5);opacity: 0;}
}
@keyframes anim5 {
  0%{transform: rotate(-30deg) scaleY(0.5);opacity: 0;}
  50%{transform: rotate(-30deg) translateY(-8px) scaleY(1.4); opacity: 1;}
  100%{transform: rotate(-30deg) translateY(-16px) scaleY(0.5);opacity: 0;}
}
@keyframes anim6 {
  0%{transform: rotate(30deg) scaleY(0.5);opacity: 0;}
  50%{transform: rotate(30deg) translateY(-8px) scaleY(1.4); opacity: 1;}
  100%{transform: rotate(30deg) translateY(-16px) scaleY(0.5);opacity: 0;}
}
@keyframes anim7 {
  0%{transform: rotate(30deg) scaleY(0.5);opacity: 0;}
  50%{transform: rotate(30deg) translateY(8px) scaleY(1.4); opacity: 1;}
  100%{transform: rotate(30deg) translateY(16px) scaleY(0.5);opacity: 0;}
}
@keyframes anim8 {
  0%{transform: rotate(-30deg) scaleY(0.5);opacity: 0;}
  50%{transform: rotate(-30deg) translateY(8px) scaleY(1.4); opacity: 1;}
  100%{transform: rotate(-30deg) translateY(16px) scaleY(0.5);opacity: 0;}
}



/* ========== ===== ===== BLOG PAGE ===== ===== ========== */

/* ---------- Blog Posts ---------- */
.blog_row_ { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog_col_ { display: block; position: relative; }

.blog_card { display: block; width: 100%;  }
.blog_img { display: block; margin-bottom: 32px; }
.blog_img img { width: 100%; height: auto; }
.blog_txt {  }
.blog_txt h3 { font-size: 20px; }
.blog_txt ul { display: flex; gap: 9px; margin: 12px 0; }
.blog_btn { display: inline-block; padding: 9px 32px; background: var(--c1); color: #fff; border-radius: 50px; margin-top: 32px; transition: var(--ts); }
.blog_btn:hover { box-shadow: 0px 8px 25px #00000040 !important; transform: translateY(-5px); background: var(--c2); }

@media all and (max-width: 480px) {
    .blog_row_ { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
    .blog_row_ { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- Blog Area ---------- */
.section_blog { display: block; padding: 60px 16px; position: relative; overflow: hidden; }
.blog_area { max-width: 900px; margin: auto; }

.blog_flex { display: flex; flex-direction: column; gap: 16px; }
.blog_flex h1 {  }
.blog_flex p { margin-top: 16px; }

.blog_image { width: 100%; height: 40vh; display: block; overflow: hidden; }
.blog_image img { width: 100%; height: 100%; object-fit: cover; }

.blog_content { margin-top: 24px; }
.blog_content h2 { color: #1e1765; margin-bottom: 32px; }
.blog_content h3 { color: #1e1765; }
.blog_content p { margin-top: 12px;  }
.blog_content p a { color: #00c2dd; }
.blog_content p+h3 { margin-top: 12px; color: var(--c2); }
.blog_content div+div { margin-top: 16px; }

.blog_content ul { display: block; padding-left: 24px; list-style: disc; margin-top: 24px; }
.blog_content ul li+li { margin-top: 16px; }

@media all and (max-width: 480px) {
	.section_blog { padding: 40px 16px; }
	.blog_img { height: auto; }
	.blog_img img { height: auto; }
}






/* ========== ===== ===== Contact Page ===== ===== ========== */

.section-contact { display: block; padding: 100px 16px; }
.contact_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 24px; }
.contact_col { display: block; width: 100%; }

.contact_text { display: block; }
.contact_text h2 { font-size: 32px; margin-top: 12px; }
.contact_text p { margin-top: 16px; }
.contact_text p+p { margin-top: 6px; }
.contact_box { display: block; margin-top: 24px; }
.contact_box ul { display: flex; align-items: center; gap: 24px; }
.contact_box ul li i { font-size: 42px; color: #1cc34f; }
.contact_box ul li h3 { font-size: 18px; }
.contact_box ul li p { font-size: 15px; margin-top: 8px; }

.contact_form { display: block; padding: 32px; background: #fff; border-radius: 6px; box-shadow: 0px 7px 24px 0px #0000001f; }
.contact_form h2 { font-size: 32px; }
.contact_form p { margin-top: 16px; }
.contact_form form { display: block; }
.form_group { display: flex; gap: 16px; margin-top: 16px; }
.form_group input,
.form_group select,
.form_group textarea { width: 100%; padding: 16px; background: #f3f5fd; border: 1px solid #f3f5fd; outline: 0; }
.form_group button { padding: 16px 48px; border: 0; outline: 0; border-radius: 4px; background: var(--c1); color: #fff; }

@media all and (max-width: 480px) {
	.section-contact { padding: 60px 16px; }
	.contact_row { grid-template-columns: repeat(1, 1fr); }
	.form_group { flex-direction: column; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.contact_row { grid-template-columns: repeat(1, 1fr); }
}


/* ----- MAP ----- */
.map_area { display: block; width: 100%; height: 40vh; box-shadow: var(--bs); overflow: hidden;  }
.map_area iframe { display: block; width: 100%; height: 100%; border: 0; }

@media all and (max-width: 480px) {
	.map_area { height: 40vh; }
}




/* ========== ========== ===== Footer Section ===== ========== ========== */
.footer {  }

.upper_section { width: 100%; display: block; background: #f0f5fb; position: relative; padding: 60px 16px; }
.footer_row { width: 100%; display: grid; grid-template-columns: 28% 16% 16% 16% 24%; }
.footer_col { width: 100%; display: block; }
.footer_col h3 { font-size: 22px; color: var(--c1); margin-bottom: 24px; }

.footer_col:first-child { padding-right: 30px; }
.footer_col:first-child p { text-align: justify; }

.footer_social { display: inline-flex; gap: 8px; margin-top: 24px; }
.footer_social a { display: block; width: 38px; height: 38px; line-height: 38px; text-align: center;
	background: #1e282f; color: #fff; border-radius: 6px; transition: var(--ts); }
.footer_social a:hover { background: var(--c1); }

.quick_links { display: block; }
.quick_links li+li { margin-top: 12px; }
.quick_links li { transition: var(--ts); }
.quick_links li a { display: block; position: relative;  }
.quick_links li a:before { content: "\f061"; font-family: "Font Awesome 6 Pro";
	font-weight: 900; font-size: 13px; margin-right: 8px; color: var(--c1); }
.quick_links li:hover { margin-left: 16px; color: var(--c1); }

.footer_anch+.footer_anch { margin-top: 16px; }
.footer_anch { display: block; }
.footer_anch ul { display: flex; align-items: center; }
.footer_anch ul li { display: block; margin-top: 0; }
.footer_anch ul li:first-child { width: 34px; }
.footer_anch ul li:last-child  { width: 80%; }
.footer_anch ul li i { font-size: 18px; padding-top: 5px; color: var(--c1); }
.footer_anch ul li p  {  margin-top: 0px; }
.footer_anch ul li a { display: block; margin-top: 8px; }
.footer_anch:last-child ul { align-items: flex-start; }

.our_branches { display: block; }
.our_branches p { font-weight: 600; color: var(--c1); }
.our_branches a { display: block; transition: var(--ts); }
.our_branches a:before { content: "\f054"; font-family: "Font Awesome 6 Pro";
	font-weight: 900; font-size: 14px; margin-right: 8px; color: var(--c1); }
.our_branches a:hover { margin-left: 16px; }


.lower_section { width: 100%; display: block; background: var(--c1); position: relative; text-align: center; }
.lower_section .row { display: flex; justify-content: center; align-items: center;  gap: 12px; max-width: 1140px; margin: auto; padding: 26px 16px; }
.lower_section .row p { color: #fff; }
.lower_section .row p a { display: inline-block; color: var(--c2); font-weight: 500; font-weight: 600; transition: var(--ts); }
.lower_section .row p a:hover { color: var(--c3); }

@media all and (max-width: 480px) {
	.footer_row { grid-template-columns: repeat(1, 1fr); grid-gap: 32px; }
	.footer_col:first-child { padding-right: 0px; }

	.lower_section .row { flex-direction: column; padding: 16px; }
}