#topmain{
	background-image: url('../../assets/images/main_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 128 / 69;
	position: relative;
}
.overlay{
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px;
	padding-bottom:40px;

	color: #fff;
}


#topmain h2{
	font-size: 30px;
	padding-bottom:20px;
	text-align: right;;
}
#topmain p{
	font-size: 18px;
	line-height: 2;
}

/*layout*/
.overlay{
	max-width: 100%;
}

.spbr{
	display: none;
}

@media (min-width: 2600px) {
	#topmain{
		height: 1380px;
		aspect-ratio: auto;
	}
	#topmain h2{
		font-size: 52px;
	}
	#topmain p{
		font-size: 22px;
	}
	.overlay{
		
		padding: 50px!important;
	}
}


@media (max-width: 991px) {

	#topmain{
		aspect-ratio: 1/1.2;
	}

	.overlay{
		max-width: 90%;
	}
	#topmain h2{
		/*font-size: 24px;*/
		font-size: clamp(20px, 4vw, 28px);
		padding-bottom:10px;
	}
	#topmain p{
		/*font-size: 14px!important;*/
		font-size: clamp(14px, 3.5vw, 14px)!important;
	}

	.spbr{
		display: block;
	}
}


@media screen and (max-width:575px){
	#topmain h2{
		text-align: right;
	}
	#topmain p{
		line-height: 170%;
		font-size: 12px!important;
	}
	
}



/*Panels*/
.box .upper {

	background-size: 100%;
	background-position: center;
	aspect-ratio: 64 / 55;
}

#topPanels{
	background-color: #f5f5f5;

}

.panelsWrap{
	max-width: 100%;
	margin: 0;
	padding: 0;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}
.panelsWrap .item{
	flex: 1 1 33.3333%;
	max-width: 33.3333%;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
}

@media screen and (max-width: 1199px) {
	.panelsWrap .item{
		flex: 1 100%;
		max-width: 100%;
	}
}



.box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
}



.box{
	background-color: #fff;

	overflow: hidden;
	margin: 0; /* Remove margin to make boxes tightly packed */
}
.box .upper{

	background-size: cover;
	background-position: center;
}
.box-1{
	background-color: #262626; /* Set background color for box 1 */
	color: #fff; /* Set text color to white */
}
.box-1 .upper{
	background-image: url('../../assets/images/top_panel01.jpg');
}
.box-2{
	background-color: #333333; /* Set background color for box 2 */
	color: #fff; /* Set text color to white */
}
.box-2 .upper{
	background-image: url('../../assets/images/top_panel02.jpg');
}
.box-3{
	background-color: #262626; /* Set background color for box 3 */
	color: #fff; /* Set text color to white */
}
.box-3 .upper{
	background-image: url('../../assets/images/top_panel03.jpg');
}

.box .under{
	padding: 30px;
}



h1{
	font-size: 50px;
}