.anavathmizo {
	--theme-color-1: #009992;
	--theme-color-2: #2c6176;
	position: relative;
	padding: 3rem 0;
	color: #000000;
	background: #f5f5f5;
	font-size: 1.25rem;
	font-weight: 270;
}
.anavathmizo * {
	font-family: Geologica, sans-serif;
}

.anavathmizo nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	padding: 1rem;
}
.anavathmizo nav .btn-prev,
.anavathmizo nav .btn-next {
	display: inline-flex;
	margin: 0 .5rem;
	width: 50px;
	height: 50px;
	border: 0;
	justify-content: center;
	align-items: center;
	color: var(--theme-color-2);
	font-size: 50px;
}
.anavathmizo nav .btn-prev:hover,
.anavathmizo nav .btn-next:hover {
	color: var(--theme-color-1);
}
.anavathmizo h1 {
	font-weight: 700;
	font-size: 2.25rem;
}
.anavathmizo .photos > * {
	margin-bottom: 1rem;
}
.anavathmizo img {
	grid-area: photos;
	display: block;
	width: 100%;
	height: auto;
}
.anavathmizo strong {
	font-weight: 700;
}
.anavathmizo .text ol,
.anavathmizo .text ul {
	counter-reset: presentation-list;
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
}
.anavathmizo .text ol > li {
	counter-increment: presentation-list;
	position: relative;
	min-height: 3rem;
	margin-bottom: 1.75rem;
	padding-left: 4rem;
	line-height: 1.25;
}
.anavathmizo .text ol > li::before {
	content: counter(presentation-list);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: #28758d;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}
.anavathmizo .text ul > li {
	position: relative;
	padding: .5rem 0;
	padding-left: 3rem;
	line-height: 1.25;
}
.anavathmizo .text ul > li::before {
	content: '\F133';
	position: absolute;
	left: 0;
	font-family: 'bootstrap-icons';
	color: var(--theme-color-2);
}
.anavathmizo [class*="alter-"] ul > li::before {
	color: #ffffff;
}

@media (min-width:992px) {
	.row-cols-lg-4 .col {
		flex: 0 0 25%;
	}
}

.anavathmizo .alter-1,
.anavathmizo .alter-2 {
	margin: 1rem 0;
	padding: 2rem;
	height: calc(100% - 1rem);
	color: #ffffff;
	background-color: var(--theme-color-1);
	border-radius: 2rem;
}
.anavathmizo .alter-2 {
	background-color: var(--theme-color-2);
}
.anavathmizo .alter-1 ul,
.anavathmizo .alter-2 ul {
	padding: 0;
}
.anavathmizo .alter-1 li,
.anavathmizo .alter-2 li {
	position: relative;
	display: block;
	padding: .5rem 0;
	padding-left: 3rem;
	list-style: none;
}
.anavathmizo .alter-1 li::before,
.anavathmizo .alter-2 li::before {
	content: '\F133';
	position: absolute;
	left: 0;
	font-family: 'bootstrap-icons';
}



.block-overlay {
	position: relative;
	isolation: isolate;
	display: flex!important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100vw;
	max-width: none;
	min-height: calc(100vh - 6rem);
	margin-left: calc(50% - 50vw);
	padding: 3rem;
	box-sizing: border-box;
	overflow: hidden;
	background-color: var(--theme-color-1);
	color: #fff;
	text-align: center;
}

.block-overlay > .photos {
	position: absolute;
	inset: 3rem;
	z-index: -1;
	margin: 0;
	overflow: hidden;
	grid-area: auto!important;
}

.block-overlay > .photos::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgb(0 0 0 / 25%);
	pointer-events: none;
}

.block-overlay > .photos > .main-photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: cover;
}

.block-overlay > .photos > .other-photo {
	display: none;
}

.block-overlay > .title,
.block-overlay > .text {
	position: relative;
	z-index: 1;
	max-width: 60rem;
	text-shadow: 0 0 2px rgba(0,0,0,.9);
}

.block-overlay > .title {
	margin: 0 0 1.5rem;
	color: inherit;
}

.block-overlay > .text {
	margin: 0;
	color: inherit;
}



@media (min-width:768px) {
	.anavathmizo [class^="block-"],
	.anavathmizo [class*=" block-"] {
		display: grid;
	}
	.anavathmizo h1 {
		grid-area: title;
		margin: 0;
		font-size: 2.25rem;
		text-align: left;
	}
	.anavathmizo .text {
		grid-area: text;
	}
	.anavathmizo .photos {
		grid-area: photos;
	}

	.block-typical {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: auto auto 1fr;
		grid-template-areas:
			"photos title"
			"photos text"
			"photos .";
		column-gap: 4rem;
		row-gap: 2rem;
		align-items: start;
	}
	.block-typical.reverse {
		grid-template-areas:
			"title photos"
			"text photos"
			". photos";
	}



	.block-hero {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto 1fr;
		grid-template-areas:
			"photos"
			"title"
			"text";
		gap: 2rem;
	}
	.block-hero .photos {
		grid-area: photos;
	}
	.block-hero h1 {
		grid-area: title;
	}
	.block-hero .text {
		grid-area: text;
	}



	.block-text {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"text";
		row-gap: 2rem;
	}
	.block-text .title {
		grid-area: title;
		margin: 0;
	}
	.block-text .text {
		grid-area: text;
	}

	.block-photorow {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"text"
			"photos";
		row-gap: 2rem;
	}
	.block-photorow .photos {
		--photo-height: 25rem;

		grid-area: photos;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 1.5rem;
		width: 100%;
	}
	.block-photorow .photos img {
		display: block;
		flex: 0 0 auto;
		width: auto;
		height: var(--photo-height);
		max-width: none;
	}


	.block-cross {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"text"
			"photos";
		row-gap: 2rem;
	}

	.block-cross .title {
		grid-area: title;
		margin: 0;
	}

	.block-cross > .text {
		grid-area: text;
	}

	.block-cross > .photos {
		grid-area: photos;
		display: grid;
		grid-template-columns:
			minmax(0, 1fr)
			minmax(0, 1fr);
		gap: 1rem;
		width: 100%;
	}

	.block-cross > .photos > * {
		grid-area: auto;
		width: 100%;
		min-width: 0;
		margin: 0;
		aspect-ratio: 16 / 9;
		overflow: hidden;
		border-radius: 1rem;
	}

	.block-cross > .photos > img,
	.block-cross > .photos > .other-photo > img {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		object-fit: cover;
	}


	.block-main-left {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"text"
			"photos";
		row-gap: 2rem;
	}
	.block-main-left .title {
		grid-area: title;
		margin: 0;
	}
	.block-main-left > .text {
		grid-area: text;
	}
	.block-main-left > .photos {
		grid-area: photos;
		display: grid;
		grid-template-columns:
			minmax(0, 1.65fr)
			minmax(0, 1fr);
		grid-template-rows:
			minmax(0, 1fr)
			minmax(0, 1fr);
		gap: 1.5rem;
		width: 100%;
		aspect-ratio: 2.25 / 1;
	}
	.block-main-left > .photos > * {
		grid-area: auto;
		width: 100%;
		min-width: 0;
		height: 100%;
		min-height: 0;
		margin: 0;
		overflow: hidden;
		border-radius: 1rem;
	}
	.block-main-left > .photos > .main-photo {
		grid-column: 1;
		grid-row: 1 / 3;
	}
	.block-main-left > .photos > .other-photo:nth-of-type(1) {
		grid-column: 2;
		grid-row: 1;
	}
	.block-main-left > .photos > .other-photo:nth-of-type(2) {
		grid-column: 2;
		grid-row: 2;
	}
	.block-main-left > .photos > img,
	.block-main-left > .photos > .other-photo > img {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		object-fit: cover;
	}



	.block-main-top {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
		grid-template-rows: min-content min-content 1fr;
		grid-template-areas:
			"photos title"
			"photos text"
			"photos .";
		column-gap: 4rem;
		row-gap: 2rem;
		align-items: start;
	}

	.block-main-top > h1 {
		grid-area: title;
		margin: 0;
	}

	.block-main-top > .text {
		grid-area: text;
		margin: 0;
		min-width: 0;
	}

	.block-main-top > .photos {
		grid-area: photos;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: minmax(0, 1.25fr) minmax(0, 1fr);
		gap: 0.5rem;
		width: 100%;
		min-width: 0;
		margin: 0;
		aspect-ratio: 0.86;
	}

	.block-main-top > .photos > * {
		grid-area: auto;
		width: 100%;
		height: 100%;
		min-width: 0;
		min-height: 0;
		margin: 0;
		overflow: hidden;
	}

	.block-main-top > .photos > .main-photo {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.block-main-top > .photos > .other-photo:nth-of-type(1) {
		grid-column: 1;
		grid-row: 2;
	}

	.block-main-top > .photos > .other-photo:nth-of-type(2) {
		grid-column: 2;
		grid-row: 2;
	}

	.block-main-top > .photos > img,
	.block-main-top > .photos > .other-photo > img {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		object-fit: cover;
	}

	@media (max-width: 768px) {
		.block-main-top {
			grid-template-columns: minmax(0, 1fr);
			grid-template-rows: auto;
			grid-template-areas:
				"title"
				"text"
				"photos";
			gap: 1.5rem;
		}
	}
}

[class*="alter-"] h2 {
	margin: 1rem 0;
}
[class*="alter-"] p {
	font-size: 1rem;
}
.has-icons [class*="alter-"]::before {
	content: '';
	display: block;
	aspect-ratio: 1;
	margin: 0 auto;
	max-width: 100px;
	max-height: 100px;
	background: url(/images/anavathmizo-icon-1.png) center / cover no-repeat;
}

.icons-10 .col:nth-child(2) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-2.png);
}
.icons-10 .col:nth-child(3) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-3.png);
}
.icons-10 .col:nth-child(4) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-4.png);
}
.icons-10 .col:nth-child(5) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-5.png);
}

.icons-11 .col:nth-child(1) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-6.png);
}
.icons-11 .col:nth-child(2) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-7.png);
}
.icons-11 .col:nth-child(3) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-8.png);
}
.icons-11 .col:nth-child(4) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-9.png);
}
.icons-11 .col:nth-child(5) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-10.png);
}
.icons-11 .col:nth-child(6) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-11.png);
}
.icons-11 .col:nth-child(7) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-12.png);
}
.icons-11 .col:nth-child(8) [class*="alter-"]::before {
	background-image: url(/images/anavathmizo-icon-13.png);
}
