@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	box-sizing: border-box;
	font-family: lato;
	color: #F8F8F8;
	line-height: 1.2;
}
html {
  scroll-behavior: smooth;
}
@media (min-width: 1440px) {
  ::-webkit-scrollbar {
    width: 0.5vw;
  }
  ::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #EEEEEE;
  }
  ::-webkit-scrollbar-thumb {
    background: #941E1B;
    border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #b42325;
  }
  html {
    scrollbar-width: thin; /* Firefox support */
    scrollbar-color: #941E1B #EEEEEE;
  }
}

/* Slideshow */
.hero-section {
	padding: 75px 232px 0 233px;
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.hero-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: rgba(248, 248, 248, 0.5);
	width: 100%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-text h1 {
	color: #20120D;
	font-family: Oswald, sans-serif;
	font-size: 64px;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

/* Main Content */
.fade-in-section {
	opacity: 0;
  	transform: translateY(-20px);
  	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-section.is-visible {
  	opacity: 1;
  	transform: translateY(0);
}

.padding{
	padding: 75px 132px 75px 133px;
}
.padding h2{
	width: 50%;
}
.margin{
	margin-top: 75px;
}
h2{
	font-size: 40px;
	color: #941B1E;
	font-weight: 500;
}
h3{
	font-size: 28px;
	color: #20210D;
	font-weight: 400;
	position: relative;
	width: 575px;
}
.mission h3, .core_values h3{
	font-size: 28px;
	color: #20210D;
	font-weight: 400;
}
.mission ol, .core_values ol, .h3left ol{
	padding-left: 25px;
	font-size: 28px;
	color: #20210D;
	font-weight: 400;
	width: 575px;
	list-style-position: outside;
}
.mission ol li, .core_values ol li, .h3left ol li{
	margin-bottom: 0;
	text-align: left;
	font-size: 28px;
}

.h3left{
	margin-left: 50%;
	width: 50%;
}
.h3left ol{
	margin-top: 75px;
}
.two-column{
	display: flex;
	gap: 25px;
	align-items: flex-start;
}
.two-column h3, .two-column img {
	width: 50%;
	box-sizing: border-box;
}
.two-column img{
	object-fit: cover;
}
.multi_image{
	width: 100%;
	height: 250px;
	object-fit: cover;
}

/* Gallery */
.gallery {
	margin-top: 75px;
	display: flex;
	flex-direction: column;
	gap: 75px;
}
.row {
	display: flex;
	gap: 25px;
	justify-content: center;
	flex-wrap: nowrap;
}
.img-wrapper {
	position: relative;
	overflow: hidden;
	width: fit-content;
	height: 275px;
}
.img-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(32, 18, 13, 0.2) 0%, rgba(32, 18, 13, 0) 100%);
	z-index: 1;
	pointer-events: none;
}
.img-575 {
	width: 575px;
	height: 275px;
	object-fit: cover;
}
.img-275 {
	width: 275px;
	height: 275px;
	object-fit: cover;
}

@media (max-width: 768px){
	.hero-text h1{
		font-size: 3rem;
	}
	h2{
		font-size: 1.7rem;
	}
	h3, .mission h3, .core_values h3{
		font-size: 1.2rem;
	}
	.mission ol, .core_values ol, .h3left ol, .mission ol li, .core_values ol li, .h3left ol li{
		font-size: 0.9rem
	}
	.hero-section, .padding{
		padding: 4vw;
	}
	.margin{
		margin-top: 4vw;
	}
	.padding h2{
		width: 70%;
	}
	.two-column{
		gap: 4vw;
	}
	.mission{
		width: 50%;
	}
	.two-column img{
		width: 50%;
	}
	.mission ol{
		width: auto;
	}
	.multi_image{
		width: 60%;
		height: auto;
		margin-left: 20%;
	}
	.h3left ol{
		width: 100%;
		margin-top: 4vw;
	}
	.gallery{
		margin-top: 4vw;
		gap: 4vw;
	}
	.row{
		gap: 4vw;
	}
	.img-wrapper{
		height: 200px;
	}
	.img-575{
		height: 200px;
		width: 400px;
	}
	.img-275{
		height: 200px;
		width: 200px;
	}
}
@media (max-width: 426px){
	.hero-section img{
		height: auto;
		margin-top: 35%;
	}
	.hero-text h1{
		font-size: 2rem;
	}
	h2{
		font-size: 1.3rem;
	}
	h3, .mission h3, .core_values h3{
		font-size: 1rem;
	}
	.mission ol, .core_values ol, .h3left ol, .mission ol li, .core_values ol li, .h3left ol li{
		font-size: 0.8rem
	}
	.hero-section, .padding{
		padding: 10vw 4vw;
	}
	.margin{
		margin-top: 10vw;
	}
	.padding h2, .mission, .core_values, .core_values ol{
		width: 100%;
	}
	.h3left{
		margin-left: 20%;
		width: 80%;
		text-align: right;
	}
	.two-column{
		display: inline;
	}
	.two-column img{
		width: 100%;
		margin-top: 10vw;
	}
	.h3lefttwo{
		width: 100%;
		margin-left: 0;
	}
	.gallery{
		margin-top: 10vw;
	}
	h3{
		width: 100%;
	}
	.img-wrapper, .img-wrapper img{
		aspect-ratio: 1;
		width: 100%;
		height: 30vw;
	}
	.multi_image{
		margin-bottom: 10vw;
	}
}
@media (max-width: 376px){
	.hero-text h1{
		font-size: 1.8rem;
	}
	h2{
		font-size: 1.2rem;
	}
	h3, .mission h3, .core_values h3{
		font-size: 0.9rem;
	}
	.mission ol, .core_values ol, .h3left ol, .mission ol li, .core_values ol li, .h3left ol li{
		font-size: 0.7rem
	}
}
@media (max-width: 320px){
	.hero-text h1{
		font-size: 1.6rem;
	}
	h2{
		font-size: 1rem;
	}
	h3, .mission h3, .core_values h3{
		font-size: 0.8rem;
	}
}