section.panel {
	padding: 40px 5% 0px 5%;
	@media (width < 780px) {
		padding: 40px 0% 0px 0%;
	}
	> div {
		max-width: 1920px;
		margin-inline: auto;
		display: grid;
		> picture {
			grid-area: 1/1/2/2;
			> img {
				width: 100%;
				max-width: 100%;
				@media (width < 650px) {
					min-height: 140px;
					object-fit: cover;
                    object-position: 25% center;
				}
			}
		}
		> div {
			grid-area: 1/1/2/2;
			justify-self: start;
            align-self: end;
			margin-bottom: 2%;
			@media (width < 500px) {
				margin-bottom: 0px;
				align-self: center;
			}
			> figure {
				margin-left: 20%;
				@media (width < 500px) {
					margin-left: 5%;
				}
				> img {
					width: 30vw;
					@media (width < 780px) {
						width: 290px;
					}
				}
			}
			> p {
				display: inline-block;
				padding-inline: 20%;
				margin-top: 10px;
				text-align: center;
				background-color: #fff;
				font-size: min(1.1rem, 6vw);
				line-height: 1.5;
				color: var(--color-accent2);
				font-weight: 700;
				@media (width < 500px) {
					padding-inline: 5%;
				}
			}

		}
	}
}
section.breadcrumbs {
	background-color: #fff;
}
section.top {
	margin-top: 50px;
	> div {
		display: grid;
		align-items: center;
		> div.bg {
			position: relative;
			z-index: 1;
			grid-area: 1/1/2/2;
			display: grid;
			height: 100%;
			> figure {
				grid-area: 1/1/2/2;
				> img {
					max-width: 100%;
				}
			}
			> figure:nth-of-type(1) {
				> img {
					object-fit: cover;
                    object-position: 0% center;
					max-height: 210px;
					width: 100%;
					@media (width < 1370px) {
						object-fit: cover;
						object-position: 0% center;
						max-height: unset;
						height: 100%;
					}
				}
			}
			> figure:nth-of-type(2) {
				clip-path: polygon(40% 0, 100% 0, 100% 100%, 30% 100%);
				overflow: hidden;
				width: 100%;
				max-height: 210px;
				@media (width < 1370px) {
					max-height: unset;
					height: 100%;
				}
				@media (width < 560px) {
					clip-path: polygon(60% 0, 100% 0, 100% 100%, 30% 100%);
				}
				> img {
					width: 100%;
  					height: 100%;
					object-fit: cover;
                    object-position: 100% center;
				}
			}
			> figure:nth-of-type(3) {
				justify-self: end;
				align-self: start;
				position: relative;
				z-index: 3;
				> img {
					width: auto;
					height: 100%;
					@media (width < 960px) {
						width: 60vw;
						height: unset;
					}
				}
			}
		}
		> div.content {
			grid-area: 1/1/2/2;
			position: relative;
			z-index: 2;
			padding: 30px 5%;
			> div {
				max-width: 1000px;
				margin-inline: auto;
				> h3 {
					font-size: min(2.8rem, 12vw);
					line-height: 1.3;
					color: #fff;
					font-weight: 700;
					margin-bottom: 20px;
					> small {
						font-size: min(1.6rem, 7vw);
					}
				}
			}
		}
	}
}
section.content {
	padding: 100px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.item {
			display: grid;
			> div {
				align-self: center;
				grid-area: 1/1/2/2;
				height: 2px;
				width: 100%;
				background-color: #000;
			}
			> h3 {
				padding-inline: 40px;
				background-color: #fff;
				justify-self: center;
				align-self: center;
				grid-area: 1/1/2/2;
				font-size: min(3rem, 12vw);
				line-height: 1.3;
				color: #000;
				font-weight: 700;
				letter-spacing: 5px;
				@media (width < 460px) {
					padding-inline: 20px;
				}
			}
		}
		> h4 {
			margin-top: 10px;
			text-align: center;
			font-size: min(1.0rem, 5vw);
			color: var(--color-accent2);
			font-weight: 700;
			line-height: 2.0;
		}
		> p {
			margin-top: 60px;
			font-size: min(1.0rem, 5vw);
			line-height: 1.8;
			color: #222;
			text-align: justify;
		}
		> figure {
			margin-top: 100px;
			> img {
				max-width: 100%;
			}
		}
	}
}
section.owned {
	padding: 100px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h3 {
			text-align: center;
			font-size: min(3.0rem, 14vw);
			line-height: 1.0;
			color: #000;
			font-weight: 700;
		}
		> h4 {
			margin-top: 10px;
			text-align: center;
			font-size: min(1.2rem, 5vw);
			color: var(--color-accent2);
			font-weight: 700;
			line-height: 2.0;
		}
		> div.table {
			margin-top: 40px;
			> div.scrolltable {
				max-width: 90vw;
				> div.guidance {
					text-align: right;
				}
				> div.table {
					overflow: auto;
					> table {
						width: 100%;
						border-collapse: collapse;
						> thead {
							> tr {
								border: 2px solid #000;
								> th {
									padding-block: 10px;
									padding-inline: 5px;
									background-color: var(--color-accent2);
									color: #fff;
									font-size: min(1.2rem, 5vw);
									line-height: 2.0;
									font-weight: 400;
									text-align: center;
									white-space: nowrap;
									border: solid 1px #fff;
								}
							}
						}
						> tbody {
							> tr {
								> th {
									padding-block: 5px;
									padding-inline: 5px;
									background-color: #cdd3e7;
									color: #222;
									font-size: min(1.2rem, 5vw);
									line-height: 2.0;
									font-weight: 400;
									text-align: center;
									white-space: nowrap;
									border: 2px solid #000;
								}
								> td {
									padding-block: 5px;
									padding-inline: 5px;
									color: #222;
									font-size: min(1.2rem, 5vw);
									line-height: 2.0;
									text-align: center;
									white-space: nowrap;
									border: 2px solid #000;
								}
							}
						}
					}
				}
			}
		}
	}
}
