* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

body,
html {
	height: 100%;
}

p {
	margin: 0;
}

img {
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.background {
	position: relative;
	width: 100dvw;
    min-height: 812px;
    height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2f2f2;
	/* overflow: hidden; */
}

.red-circle {
	position: absolute;
	width: 306px;
	height: 284px;
	/* background-image: url('./construction_img/redcircle.png'); */
	background-image: url("construction_img/wave-top.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.gray-circle {
	position: absolute;
	width: 406px;
	height: 377px;
	/* background-image: url('./construction_img/graycircle.png'); */
	background-image: url("construction_img/wave-bottom.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;

	width: 100%;
}

.title {
	display: flex;
	justify-content: center;
	padding: 5% 10% 0% 10%;
	z-index: 10;
}

.title .content {
	width: 100%;
	max-width: 800px;
}

.download_button_group {
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 28px;
}

.download_button_group .download_button {
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 279px;
	padding: 4px;
	border-radius: 8px;

	background-color: #ff5500;
}

.download_button_group .download_button p {
	flex: 1;

	color: white;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.download_button_group .download_button a:visited {
	color: white;
}

.download_button_group .download_button .country {
	width: 22px;
	height: 20px;
	background-color: white;
	border-radius: 4px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.download_button_group .download_button .country p {
	font-size: 10px;
	color: #833000;
}

.glohow-ci {
	position: absolute;
	bottom: 2%; /* Keeps it near the bottom */
	left: 50%;
	transform: translateX(-50%); /* Centers horizontally */
	z-index: 10;

	width: min(90%, 8em); /* Ensures responsiveness: max 8em but shrinks on small screens */
	max-width: 8em; /* Prevents the button from getting too large */
}

.lt {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 20%;
	height: 200px;
}

.lt_red {
	left: 0;
	top: 0;
	/* width : 120px; */
}

.lt_gray {
	left: 1%;
	top: 60%;
	width: 80px;
}

.rt {
	position: absolute;
	right: 0%;
	top: 0%;
	width: 30%;
	height: 200px;
}

.rt_red {
	right: 10%;
	top: 8%;
	width: 130px;
}

.rt_gray {
	right: 100%;
	top: -10%;
	width: 80px;
}

.lb {
	position: absolute;
	left: 0%;
	bottom: 0%;
	width: 20%;
	height: 200px;
}

.lb_red {
	left: 2%;
	bottom: -24%;
	width: 150px;
}

.lb_gray {
	left: 70%;
	top: 0%;
	width: 80px;
}

.rb {
	position: absolute;
	right: 0%;
	bottom: 0%;
	width: 20%;
	height: 200px;
}

.rb_red {
	right: 40%;
	top: -15%;
	width: 60px;
}

.rb_gray {
	right: 0;
	bottom: 0;
	/* width : 140px; */
}

.logo_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.logo_container_mobile {
	display: none;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 24px;
}

.logo_container .brand_btn {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 16px;
	border-radius: 16px;
	background-color: #fff;
	cursor: pointer;
	width: 229px;
	height: 150px;
	flex-direction: column;
	border: none;

	transition: all 0.2s ease-in-out;

	&:hover {
		box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
	}

	&:active {
		background-color: #fff;
		transform: scale(0.95);
		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	}
}

.logo_container_mobile .brand_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	border-radius: 16px;
	background-color: #fff;
	cursor: pointer;
	width: 100%;
	height: 65px;
	border: none;

	transition: all 0.2s ease-in-out;

	&:hover {
		box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
	}

	&:active {
		background-color: #fff;
		transform: scale(0.95);
		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	}
}

.logo_container .brand_btn img {
	/* padding: 5px 15px; */
	width: auto;
	height: 42px;
	object-fit: contain;
}

.logo_container_mobile .brand_btn img {
	/* padding: 5px 15px; */
	width: auto;
	height: 32px;
	object-fit: contain;
}

.logo_container_mobile .brand_btn svg {
	width: 32px;
	height: 32px;
	color: #833000;
	margin: 0;
}

.logo_container .brand_btn .view_more {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #833000;

	p {
		font-size: 15px;
		font-weight: 700;
	}
}

.logo_container .brand_btn .coming_soon {
	font-size: 15px;
	font-weight: 700;
	color: #adadad;
}

.logo_container_mobile .brand_btn .coming_soon {
	font-size: 15px;
	font-weight: 700;
	color: #adadad;
}

.middle_container {
	display: flex;
	justify-content: center;
	align-content: center;
	width: 100%;
	margin-top: 12.5%;
}

.middle_container .contact_button {
	display: flex;
	align-items: center;
	padding: 8px 20px;
	border-radius: 1000px;
	background-color: #006eff;
	width: 171px;
	color: white;
}

.middle_container .contact_button .contact_button_p {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.middle_container .contact_button .contact_button_p p:first-child {
	font-size: 15px;
	font-weight: 700;
}

.middle_container .contact_button .contact_button_p p:last-child {
	font-size: 10px;
}

.mail_mark {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;

	width: 50px;
	padding-left: 5px;
}

.mail_mark img {
	width: 70%;
	height: auto;
	fill: white;
}

@media screen and (min-width: 1500px) {
	.red-circle {
		/* scale:150%; */
	}

	.gray-circle {
		/* scale:150%; */
	}

	.middle_container {
		margin-top: 8%;
	}
}

@media screen and (max-width: 768px) {
	.background {
		padding: 0 16px;
	}

	.container {
		padding: 0;
		gap: 32px;
	}

	.red-circle {
		width: 142px;
		height: 132px;
	}

	.gray-circle {
		width: 200px;
		height: 187px;
	}

	.download_button_group {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.logo_container {
		display: none;
	}

	.logo_container_mobile {
		display: flex;
	}

	.middle_container {
		margin-top: 0;
	}
}
