/**
 * Common Component Styles
 * Converted from SCSS to CSS for WordPress
 */

/* Arrow Icon Button */
.arrow_icon_btn {
	width: 58px;
	height: auto;
	aspect-ratio: 1/1;
	border: 1px solid hsla(0, 0%, 100%, 0.3);
	position: relative;
	border-radius: 50%;
}

.arrow_icon_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../images/btn-arrow.svg");
}

.arrow_icon_btn.width_46 {
	width: 46px;
}

.arrow_icon_btn.reverse_icon {
	transform: scaleX(-1);
}

.arrow_icon_btn:hover {
	background-color: var(--darkBlue, #002c5f);
}

.arrow_icon_btn.bg_blue {
	background-color: var(--darkBlue, #002c5f);
}

.arrow_icon_btn.bg_blue:hover {
	background-color: var(--lightBlue, #a3dbe8);
}

.arrow_icon_btn.color_blue {
	border-color: var(--darkBlue, #002c5f);
}

.arrow_icon_btn.color_blue::after {
	background-image: url("../images/btn-arrow-blue.svg");
}

.arrow_icon_btn.color_blue:hover {
	background-color: var(--darkBlue, #002c5f);
}

.arrow_icon_btn.color_blue:hover::after {
	background-image: url("../images/btn-arrow.svg");
}

.arrow_icon_btn.arrow_icon_btn_next {
	transform: rotate(180deg);
}

/* Form Input Field */
.common_search_input {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.common_search_input input {
	height: 100%;
	width: 100%;
	padding: 0 30px;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 16px;
	font-weight: 400;
}

.common_search_input input::placeholder {
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	color: black;
}

@media (max-width: 768px) {
	.common_search_input input {
		padding: 0 25px;
	}
}

@media (max-width: 700px) {
	.common_search_input input {
		padding: 0 20px;
	}
}

.common_search_input::after {
	position: absolute;
	content: "";
	right: 30px;
	height: auto;
	width: 15px;
	aspect-ratio: 1/1;
	background-image: url("../images/search-icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (max-width: 700px) {
	.common_search_input::after {
		right: 20px;
	}
}

/* Common File Input Wrapper */
.common_file_input_wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.common_file_input_wrapper .file_input {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	height: 100%;
}

.common_file_input_wrapper .file_label_selected {
	padding-left: 20px;
	display: flex;
	height: 100%;
	font-weight: 300;
	background: transparent;
	color: #808080;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
	width: 100%;
	align-items: center;
}

.common_file_input_wrapper .file_label {
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	height: calc(100% - 6px);
	font-size: 16px;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-weight: 400;
	line-height: 150%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 33px;
	border-radius: 50px;
	background-color: #475e76;
	color: white;
	pointer-events: none;
}

.common_file_input_wrapper:hover .file_label {
	background-color: var(--darkBlue, #002c5f);
}

/* Page 404 Section */
.page_404_section {
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background-color: var(--darkBlue, #002c5f);
	border-bottom: 1px solid rgba(255, 255, 255, 0.288);
}

.page_404_section h1 {
	font-size: 46px;
	color: #ffffff;
}

.page_404_section p {
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
}

@media (max-width: 1440px) {
	.page_404_section p {
		font-size: 19px;
	}
}

@media (max-width: 1280px) {
	.page_404_section p {
		font-size: 18px;
	}
}

@media (max-width: 1024px) {
	.page_404_section p {
		font-size: 16px;
	}
}

@media (max-width: 700px) {
	.page_404_section p {
		font-size: 15px;
	}
}

/* Common Title H2 */
.main_title {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-bold, "Raleway-Bold", sans-serif);
	font-size: 55px;
	font-weight: 700;
	line-height: 1.2;
}

.title_55 {
	font-size: 55px;
}

.title_50 {
	font-size: 50px;
}

.title_56 {
	font-size: 56px;
}

@media (max-width: 1440px) {
	.title_56 {
		font-size: 48px;
	}

	.main_title,
	.title_55 {
		font-size: 48px;
	}

	.title_50 {
		font-size: 45px;
	}
}

@media (max-width: 1280px) {

	.main_title,
	.title_56,
	.title_55 {
		font-size: 42px;
	}

	.title_50 {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {

	.main_title,
	.title_56,
	.title_55 {
		font-size: 35px;
	}

	.title_50 {
		font-size: 32px;
	}
}

@media (max-width: 700px) {

	.main_title,
	.title_56,
	.title_55 {
		font-size: 25px;
	}

	.title_50 {
		font-size: 23px;
	}
}

.overflow_hide {
	overflow: hidden;
}


/* ========================================
   Subsidiaries Explore Section
   ======================================== */

/* Section Container */
.subsidiaries-explore-section {
	padding: 100px 0;
	background: #e4edf1;
	position: relative;
}

/* Header Section */
.subsidiaries-explore-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 80px;
	gap: 60px;
}

.subsidiaries-explore-header h2 {
	margin-bottom: 0;
}

.subsidiaries-explore-description {
	color: #454545;
	font-family: var(--font-medium, "Raleway-Medium", sans-serif);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	flex: 1;
	max-width: 570px;
}

/* Responsive Styles for Section Header */
@media (max-width: 1400px) {
	.subsidiaries-explore-title {
		font-size: 48px;
	}

	.arrow_icon_btn {
		width: 55px;
	}
}

@media (max-width: 1280px) {
	.arrow_icon_btn {
		width: 50px;
	}
}

@media (max-width: 1200px) {
	.arrow_icon_btn {
		width: 45px;
	}

	.subsidiaries-explore-section {
		padding: 80px 0;
	}

	.subsidiaries-explore-header {
		margin-bottom: 60px;
		gap: 40px;
	}

	.subsidiaries-explore-title {
		font-size: 42px;
		max-width: 400px;
	}

	.subsidiaries-explore-description {
		max-width: 400px;
	}
}

@media (max-width: 1024px) {
	.subsidiaries-explore-description {
		max-width: 100%;
		flex: unset;
	}

	.subsidiaries-explore-header {
		margin-bottom: 30px;
		gap: 15px;
		flex-wrap: wrap;
	}

}

@media (max-width: 768px) {
	.subsidiaries-explore-section {
		padding: 60px 0;
	}

	 

	.subsidiaries-explore-title {
		font-size: 36px;
		max-width: 100%;
	}

	.subsidiaries-explore-description {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.subsidiaries-explore-section {
		padding: 40px 0;
	}

	.subsidiaries-explore-title {
		font-size: 28px;
	}

	.subsidiaries-explore-description {
		font-size: 14px;
	}
}

/* ========================================
   Common Dropdown Select Styles
   ======================================== */

.common-dropdown {
	display: none;
	width: 100%;
	padding: 16px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	background-color: transparent;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-medium, "Raleway-Medium", sans-serif);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23a3dbe8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 30px center;
	background-size: 12px 8px;
	padding-right: 40px;
	margin: 0;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.common-dropdown:focus {
	outline: none;
	border-color: var(--lightBlue, #a3dbe8);
	color: var(--lightBlue, #a3dbe8);
}

.common-dropdown:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 0.9);
}

.common-dropdown option {
	background-color: var(--darkBlue, #002c5f);
	color: rgba(255, 255, 255, 0.7);
	padding: 10px;
	width: 100%;
}

@media (max-width: 700px) {
	.common-dropdown {
		font-size: 16px;
		padding: 10px 14px;
		padding-right: 36px;
	}
}