/*--------------------------------------------------------------
# featured 3 images Section
--------------------------------------------------------------*/
.featured-3images .featured-content h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 400;
	position: relative;
}

.featured-3images .featured-content p {
	font-size: .85rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.featured-3images .featured-content .feature-item {
	padding: 1rem 1.25rem;
	background-color: var(--surface-color);
	border-radius: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	transition: all .3s ease;
}

.featured-3images .featured-content .feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
}

.featured-3images .featured-content .feature-item i {
	font-size: 1.75rem;
	line-height: 1;
	color: var(--accent-color);
	margin-bottom: .5rem;
	display: inline-block;
}

.featured-3images .featured-content .feature-item h4 {
	font-size: 1.25rem;
	margin-bottom: .25rem;
	font-weight: 400;
}

.featured-3images .featured-content .feature-item p {
	margin-bottom: 0;
	font-size: .8rem;
	font-weight: 400;
	line-height: 1.5;
}
.featured-3images .featured-gallery .featured-gallery-card {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}
.featured-3images .featured-gallery .featured-gallery-card .featured-gallery-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.featured-3images .featured-gallery .featured-gallery-card .featured-gallery-image > img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .3s;
}

.featured-3images .featured-gallery .featured-gallery-card .featured-gallery-image > img:hover {
	transform: scale(1.1);
}

@media (max-width: 992px) {
	.featured-3images .featured-content h2 {
		padding: 0 .25rem;
		font-size: 1.25rem;
	}
	
	.featured-3images .featured-content p {
		padding: 0 .25rem;
		font-size: .85rem;
	}
}

/*--------------------------------------------------------------
# featured 1 image Section
--------------------------------------------------------------*/
.template-featured-1image .features-stack .feature-row {
	margin-bottom: 3.5rem;
}

.template-featured-1image .features-stack .feature-row:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.template-featured-1image .features-stack .feature-row {
		margin-bottom: 2.5rem;
	}
}

.template-featured-1image .features-stack .media-wrapper {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.template-featured-1image .features-stack .media-wrapper::before {
	content: "";
	display: block;
	padding-top: 50%;
}

.template-featured-1image .features-stack .media-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.template-featured-1image .features-stack .media-wrapper:hover img {
	transform: scale(1.1);
}

.template-featured-1image .features-stack .feature-info h3 {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: .75rem;
	line-height: 1.5;
}

.template-featured-1image .features-stack .feature-info p {
	font-size: 1rem;
	line-height: 1.75;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: .75rem;
}
.template-featured-1image .features-stack .feature-info p:last-child {
	margin-bottom: 0;
}

.template-featured-1image .action-btn {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	padding: .875rem 2.25rem;
	background-color: var(--surface-color);
	color: var(--accent-color);
	font-weight: 400;
	font-size: 1rem;
	border-radius: .5rem;
	text-decoration: none;
	box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	transition: all .3s ease;
}

.template-featured-1image .action-btn:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.template-featured-1image .action-btn:hover i {
	transform: translateX(5px);
}

.template-featured-1image .action-btn i {
	font-size: 1.1rem;
	transition: transform .3s ease;
}

@media (max-width: 992px) {
	.template-featured-1image .features-stack h3 {
		font-size: 1.25rem;
	}

	.template-featured-1image .features-stack p {
		font-size: .95rem;
	}
}

@media (max-width: 576px) {
	.template-featured-1image .features-stack .feature-row {
		margin-bottom: 2.5rem;
	}

	.template-featured-1image .features-stack .icon-box {
		width: 55px;
		height: 55px;
		font-size: 1.4rem;
		margin-bottom: 1.25rem;
	}

	.template-featured-1image .features-stack .feature-info h3 {
		font-size: 1.125rem;
		padding: 0 .25rem;
	}
	
	.template-featured-1image .features-stack .feature-info p {
		padding: 0 .25rem;
	}

	.template-featured-1image .features-stack .action-btn {
		padding: .75rem 2rem;
		font-size: .95rem;
	}
}

/*--------------------------------------------------------------
# Accordion Section
--------------------------------------------------------------*/
.template-accordion .accordion-info-sidebar .contact-box {
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 1rem;
	padding: 2rem;
}

.template-accordion .accordion-info-sidebar .contact-box h3 {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 10px;
}

.template-accordion .accordion-info-sidebar .contact-box p {
	font-size: .85rem;
}

.template-accordion .accordion-info-sidebar .contact-box .btn-contact {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: .5rem 1.25rem;
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 400;
	transition: all .3s;
}

.template-accordion .accordion-info-sidebar .contact-box .btn-contact:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.template-accordion .heading-item {
	position: relative;
	margin-bottom: 1rem;
	background-color: var(--surface-color);
	border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--accent-color), transparent 100%);
	box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 96%);
	padding: 0;
	transition: all .3s;
	overflow: hidden;
}

.template-accordion .heading-item:hover {
	box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 88%);
}

.template-accordion .heading-item h3 {
	font-size: 1rem;
	font-weight: 400;
	padding: .75rem 2.5rem .75rem 1rem;
	margin-bottom: 0;
	transition: color .3s ease;
	cursor: pointer;
}

.template-accordion .heading-item .heading-content {
	/*display: grid;
	grid-template-rows: 0fr;*/
	transition: all .3s;
	height: 0;
	visibility: hidden;
	opacity: 0;
	padding: 0 1.25rem;
}

.template-accordion .heading-item .heading-content p,
.template-accordion .heading-item .heading-content ul li,
.template-accordion .heading-item .heading-content ol li {
	font-size: .8rem;
	font-weight: 400;
	line-height: 1.75;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.template-accordion .heading-item .heading-content p　{
	margin-bottom: .75rem;
}
.template-accordion .heading-item .heading-content ul,
.template-accordion .heading-item .heading-content ol {
	margin-left: -.5rem;
	margin-bottom: 1rem;
	/*padding-left: .25rem;*/
}
.template-accordion .heading-item .heading-content ul li,
.template-accordion .heading-item .heading-content ol li　{
	text-indent: -1.125rem;
	margin-bottom: .5rem;
}
.template-accordion .heading-item .heading-content p:last-child,
.template-accordion .heading-item .heading-content ul li:last-child,
.template-accordion .heading-item .heading-content ol li:last-child {
	margin-bottom: 0;
}

.template-accordion .heading-item .heading-content > ul li {
	list-style: inside;
}
.template-accordion .heading-item .heading-content > ol.leading-zero-list {
	list-style-type: decimal-leading-zero;
}
.template-accordion .heading-item .heading-content > ol.leading-zero-list li {
	text-indent: 0;
	margin-bottom: .5rem;
}

/*.template-accordion .heading-item .heading-content ul.liner {
	padding-top: .5rem;
	border-top: 1px dotted color-mix(in srgb, var(--default-color), transparent 60%);
}*/
.template-accordion .heading-item .heading-content ul.liner li {
	padding-bottom: .5rem;
	margin-bottom: .5rem;
	border-bottom: 1px dotted color-mix(in srgb, var(--default-color), transparent 60%);
}

.template-accordion .heading-item .heading-toggle {
	position: absolute;
	right: .75rem;
	top: .5rem;
	font-size: 1rem;
	color: var(--accent-color);
	transition: transform .3s;
}

.template-accordion .heading-item.accordion-active {
	border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}
.template-accordion .heading-item.accordion-active h3 {
	color: var(--accent-color);
	background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 8%);
	border-bottom: 1px solid #ededed;
}

.template-accordion .heading-item.accordion-active .heading-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding: 1rem 1.25rem 1.25rem 1.25rem;
	height: auto;
}
.template-accordion .heading-item.accordion-active .heading-content ul.liner {
	margin-top: .5rem;
}

.template-accordion .heading-item.accordion-active .heading-toggle {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.template-accordion .heading-item h3 {
		font-size: .9rem;
	}
	.template-accordion .heading-item .heading-content p {
		font-size: .85rem;
	}
}

/*--------------------------------------------------------------
# Template Cards Section
--------------------------------------------------------------*/
.template-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .template-cards .cards-grid {
    gap: .75rem;
  }
}

.template-cards .card-item .card-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.template-cards .card-item .card-inner:hover {
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.template-cards .card-item .card-inner:hover .card-media img {
  transform: scale(1.1);
}

.template-cards .card-item .card-inner:hover .card-media .floating-icon {
  transform: rotate(10deg) scale(1.1);
}

.template-cards .card-item .card-inner:hover .card-cta {
  gap: .5rem;
}

.template-cards .card-item .card-inner:hover .card-cta .cta-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.template-cards .card-item .card-inner:hover .card-cta .cta-icon i {
  color: var(--contrast-color);
}

.template-cards .card-item .card-media {
  position: relative;
  flex: 0 0 180px;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 98%));
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-cards .card-item .card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.template-cards .card-item .card-media .floating-icon {
  position: absolute;
  top: .75rem;
  left: .75rem;
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.template-cards .card-item .card-media .floating-icon i {
  font-size: 1rem;
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .template-cards .card-item .card-media {
    flex: 0 0 160px;
  }
}

@media (max-width: 768px) {
  .template-cards .card-item .card-media {
    flex: 0 0 140px;
  }
}

@media (max-width: 576px) {
  .template-cards .card-item .card-media {
    flex: 0 0 120px;
  }
}

.template-cards .card-item .card-body {
  flex: 1;
  padding: .5rem .75rem .75rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.template-cards .card-item .card-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .05rem;
  color: var(--accent-color);
  margin-bottom: .25rem;
  position: relative;
  padding-left: 1rem;
}

.template-cards .card-item .card-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .75rem;
  height: 1px;
  background: var(--accent-color);
}

.template-cards .card-item h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: .5rem;
  line-height: 1.5;
}

.template-cards .card-item p {
  font-size: .85rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0.5rem;
  flex: 1;
}

.template-cards .card-item .card-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  font-weight: 400;
  color: var(--heading-color);
  text-decoration: none;
  transition: all .3s ease;
  align-self: flex-start;
}

.template-cards .card-item .card-cta .cta-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.template-cards .card-item .card-cta .cta-icon i {
  font-size: .7rem;
  color: var(--accent-color);
  transition: color .3s ease;
}

.template-cards .card-item .card-cta:hover {
  color: var(--accent-color);
}

.template-cards .card-item.featured .card-inner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%), var(--surface-color) 50%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.template-cards .card-item.featured .featured-badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .075rem;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.template-cards .card-item.featured .card-media {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.template-cards .card-item.featured .card-cta .cta-icon {
  background: var(--accent-color);
}

.template-cards .card-item.featured .card-cta .cta-icon i {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .template-cards .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*@media (max-width: 768px) {
  .template-cards .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}*/

@media (max-width: 576px) {
  /*.template-cards .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }*/

  .template-cards .card-media {
    flex: 0 0 60px;
  }
}

/*--------------------------------------------------------------
# Destination Details 2 Section
--------------------------------------------------------------*/
.introduction .introduction-hero {
  margin-bottom: 3rem;
  position: relative;
}

.introduction .introduction-hero .hero-content {
  text-align: center;
  margin-bottom: 2rem;
}

.introduction .introduction-hero .hero-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.introduction .introduction-hero .hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .3s ease;
}

@media (max-width: 768px) {
  .introduction .introduction-hero .hero-image img {
    height: 300px;
  }
}

.introduction .introduction-hero .hero-image:hover img {
  transform: scale(1.02);
}

.introduction .introduction-overview {
  margin-bottom: 3rem;
}

.introduction .introduction-overview .overview-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .introduction .introduction-overview .overview-content h2 {
    font-size: 1.25rem;
  }
}

.introduction .introduction-overview .overview-content p {
  font-size: .85rem;
	font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.introduction .introduction-overview .overview-content p:last-child {
  margin-bottom: 0;
}

.introduction .introduction-overview .overview-image {
  border-radius: 1rem;
  overflow: hidden;
}

.introduction .introduction-overview .overview-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .introduction .introduction-overview .overview-image img {
    height: 220px;
  }
}

.introduction .introduction-highlights {
  margin-bottom: 3rem;
}

.introduction .introduction-highlights .section-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.introduction .introduction-highlights .section-header h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .25rem;
}

@media (max-width: 768px) {
  .introduction .introduction-highlights .section-header h2 {
    font-size: 1.125rem;
  }
}

.introduction .introduction-highlights .section-header p {
  font-size: .85rem;
	font-weight: 400;
	line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.introduction .introduction-highlights .highlight-item {
  height: 100%;
}

.introduction .introduction-highlights .highlight-item .highlight-image {
  margin-bottom: .75rem;
  border-radius: 1rem;
  overflow: hidden;
}

.introduction .introduction-highlights .highlight-item .highlight-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .3s ease;
}
@media (max-width: 768px) {
  .introduction .introduction-highlights .highlight-item .highlight-image img {
    height: 120px;
  }
}

.introduction .introduction-highlights .highlight-item .highlight-image:hover img {
  transform: scale(1.05);
}

.introduction .introduction-highlights .highlight-item .highlight-content h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .25rem;
	padding: 0 .25rem 0 .5rem;
}

.introduction .introduction-highlights .highlight-item .highlight-content p {
  font-size: .8rem;
	font-weight: 400;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
	padding: 0 .25rem 0 .5rem;
}

.introduction .practical-info {
  margin-bottom: 4rem;
}

.introduction .practical-info .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.introduction .practical-info .section-header h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .25rem;
}

@media (max-width: 768px) {
  .introduction .practical-info .section-header h2 {
    font-size: 1.125rem;
  }
}

.introduction .practical-info .section-header p {
  font-size: .85rem;
	line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.introduction .practical-info .info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.introduction .practical-info .info-item {
  display: flex;
  gap: 1rem;
}

.introduction .practical-info .info-item .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.introduction .practical-info .info-item .info-content h5 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .5rem;
}

.introduction .practical-info .info-item .info-content p {
  font-size: .8rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.introduction .introduction-gallery {
  margin-bottom: 4rem;
}

.introduction .introduction-gallery .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.introduction .introduction-gallery .section-header h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .25rem;
}

@media (max-width: 768px) {
  .introduction .introduction-gallery .section-header h2 {
    font-size: 1.125rem;
  }
}

.introduction .introduction-gallery .section-header p {
  font-size: .8rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.introduction .introduction-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
}

@media (max-width: 768px) {
  .introduction .introduction-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
		gap: .25rem;
  }
}

.introduction .introduction-gallery .gallery-grid .gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.introduction .introduction-gallery .gallery-grid .gallery-item.large {
  grid-row: span 2;
}

/*@media (max-width: 768px) {
  .introduction .introduction-gallery .gallery-grid .gallery-item.large {
    grid-row: span 1;
  }
}*/

.introduction .introduction-gallery .gallery-grid .gallery-item a {
  display: block;
  height: 100%;
}

.introduction .introduction-gallery .gallery-grid .gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

/*@media (max-width: 768px) {
  .introduction .introduction-gallery .gallery-grid .gallery-item a img {
    height: 250px;
  }
}*/

.introduction .introduction-gallery .gallery-grid .gallery-item a:hover img {
  transform: scale(1.05);
}

.introduction .induction {
  text-align: center;
  padding: 1.25rem .75rem 1.75rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 1.25rem;
  margin-bottom: 2.5rem;
}

.introduction .induction .induction-content {
  max-width: 600px;
  margin: 0 auto;
}

.introduction .induction .induction-content h2 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: .25rem;
}

@media (max-width: 768px) {
  .introduction .induction .induction-content h2 {
    font-size: 1rem;
  }
}

.introduction .induction .induction-content p {
  font-size: .85rem;
	font-weight: 300;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: .75rem;
}

.introduction .induction .induction-content .induction-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}

@media (max-width: 576px) {
  .introduction .induction .induction-content .induction-actions {
    flex-direction: column;
    align-items: center;
  }
}

.introduction .induction .induction-content .induction-actions .btn-primary,
.introduction .induction .induction-content .induction-actions .btn-outline {
  padding: .75rem 1.25rem;
  font-size: .8rem;
  font-weight: 400;
	line-height: 1;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
}

.introduction .induction .induction-content .induction-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.introduction .induction .induction-content .induction-actions .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
}

.introduction .induction .induction-content .induction-actions .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.introduction .induction .induction-content .induction-actions .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Intro Index Gallery Template
--------------------------------------------------------------*/
.intro-index {
	margin-bottom: .75rem;
}
.intro-index .intro-index-card {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}
.intro-index .intro-index-card .intro-index-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.intro-index .intro-index-card .intro-index-image > img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .3s;
}
.intro-index .intro-index-card .intro-index-image > img:hover {
	transform: scale(1.1);
}
.intro-index p {
	font-weight: 400 !important;
	line-height: 1.5;
}