@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;
}
h2{
	font-size: 40px;
	color: #941B1E;
	font-weight: 500;
}

/* Form */
form{
	text-align: center;
	margin: 0 auto
}
.search-box{
	width: 675px;
	height: 75px;
	border-radius: 8px;
	background: #EEEEEE;
	border: none;
	text-align: center
}
.selection{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 75px;
}
.check-item{
	display: flex;
	align-items: center;
	gap: 12px;
}
.search-box::placeholder{
	color: #20120D;
	font-size: 20px;
	font-weight: 400;
	opacity: 0.5;
}
#searchBox{
	font-size: 20px;
}
.checkbox {
	display: none;
}
label {
	position: relative;
	padding-left: 45px;
	cursor: pointer;
	font-size: 20px;
	color: #20210D;
	user-select: none;
}
label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border: 1px solid #20120D;
}
.checkbox:checked + label::before{
	border: 2px solid #941B1E;
}
.checkbox:checked + label::after {
	content: "";
	position: absolute;
	left: 13px;
	top: -2px;
	width: 10px;
	height: 20px;
	border: solid #941B1E;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
button{
	width: 160px;
	height: 60px;
	border-radius: 8px;
	font-size: 20px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.button1{
	background: #941B1E;
	box-shadow: 0px 4px 4px 0px rgba(32, 18, 13, 0.50);
	margin-right: 37.5px;
	border: none;
	color: #F8F8F8;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.button1:hover{
	background-color: #b42325;
	transform: translateY(-2px);
	box-shadow: none;
}
.button2{
	border: 1px solid #20120D;
	margin-left: 37.5px;
	color: #20120D
}
.button2:hover{
	background-color: #D5D5D5;
	transform: translateY(-2px);
}
.search-status {
	margin-top: 75px;
	background-color: #F8F8F8;
	font-size: 20px;
	font-weight: 400;
	color: #20120D;
	display: none;
	text-align: center;
	width: fit-content;
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(32, 18, 13, 0.2);
}
.margin{
	margin-top: 20px;
}

.padding2{
	padding: 75px 132px 0 133px;
}
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-bottom: 75px;
}
.column-3 {
	width: calc((100% - 50px) / 3);
  	height: auto;
	min-height: 350px;
	border-radius: 8px;
	background: #EEEEEE;
	position: relative;
	overflow: hidden;
}
.image-container{
	width: 100%;
	height: 250px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}
.image-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease, filter 0.3s ease;
}
.gradient-overlay{
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
	background: linear-gradient(0deg, rgba(32, 18, 13, 0.20) 0%, rgba(32, 18, 13, 0.00) 76%);
  	pointer-events: none;
	border-radius: 8px;
	transition: background 0.3s ease;
}
.text-overlay {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	padding: 38px;
	text-align: center;
	color: #F8F8F8;
	z-index: 2;
	opacity: 0;
	transition: bottom 0.3s ease, opacity 0.3s ease;
}
.text-overlay h3 {
	font-size: 28px;
	margin: 0 0 10px;
	color: #F8F8F8;
}
.text-overlay p {
	font-size: 20px;
	margin: 0;
	color: #F8F8F8;
}
.image-container:hover img {
	filter: brightness(65%);
	transform: scale(1.02);
}
.image-container:hover .gradient-overlay {
	background: rgba(0, 0, 0, 0.3);
}
.image-container:hover .text-overlay {
	bottom: 50%;
	transform: translateY(50%);
	opacity: 1;
}
.h3-box{
	font-size: 28px;
	color: #20120D;
	font-weight: 400;
	margin: 38px;
}

/* Accordion */
.accordion{
	padding: 75px 132px 75px 133px;
	border-top: 1px solid #20120D;
	border-bottom: 1px solid #20120D;
	background: #EEEEEE;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
.accordion-item{
	border-bottom: 1px solid #20120D;
}
.accordion-header{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	margin: 38px 0;
	padding: 0;
	align-items: center;
	outline: none;
	box-shadow: none;
}
.accordion-header:focus{
	outline: none;
	box-shadow: none;
}
.accordion-header.active span{
  	color: #941B1E;
}
.accordion-header.active .toggle-icon {
  	color: #941B1E;
	transform: rotate(45deg);
	font-size: 28px;
	line-height: 1;
}
.accordion-header.one{
	margin-top: 0;
}
.accordion-header span{
	color: #20120D;
	font-size: 28px;
	transition: all 0.3s ease;
}
.accordion-header span:hover{
	color: #941B1E;
}
.toggle-icon{
	display: inline-block;
	transition: all 0.3s ease;
	font-size: 28px;
	line-height: 1;
}
.accordion-content{
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	font-size: 20px;
	margin-bottom: 0px;
}
.accordion-content.open {
  	opacity: 1;
	margin-bottom: 38px;
}
.accordion-content p{
	color: #20120D;
	text-align: left;
	margin: 0;
}
.accordion-right{
	text-align: right
}

@media (max-width: 768px){
	.hero-text h1{
		font-size: 3rem;
	}
	h2{
		font-size: 1.7rem;
	}
	h3, .text-overlay h3, .h3-box, .accordion-header span, .accordion-header.active .toggle-icon{
		font-size: 1.2rem;
	}
	.button1, .button2, .search-box::placeholder, label, .search-status, .text-overlay p, .accordion-content p, #searchBox{
		font-size: 0.9rem;
	}
	.button1:active, .button2:active{
		box-shadow: none;
		transform: translateY(1px);
	}
	.hero-section, .padding, .accordion, .text-overlay{
		padding: 4vw;
	}
	.padding2{
		padding: 4vw 4vw 0 4vw;
	}
	.button1, .button2{
		width: 150px;
		height: 50px;
	}
	.search-box{
		width: 70vw;
		height: 6vw;
	}
	.selection{
		gap: 40px;
	}
	label::before{
		width: 30px;
		height: 30px;
	}
	.row{
		margin-bottom: 50px;
	}
	.image-container{
		height: 200px;
	}
	.column-3{
		min-height: 0;
	}
	.h3-box{
		margin: 2vw;
	}
	.image-container:active img {
		filter: brightness(65%);
		transform: scale(1.02);
	}
	.image-container:active .text-overlay {
		bottom: 50%;
		transform: translateY(50%);
		opacity: 1;
	}
	.accordion-header, .accordion-content.open{
		margin: 4vw 0;
	}
	.search-status{
		margin-top: 4vw;
	}
}
@media (max-width: 426px){
	.hero-text h1{
		font-size: 2rem;
	}
	h2{
		font-size: 1.3rem;
	}
	h3, .text-overlay h3, .h3-box, .accordion-header span, .accordion-header.active .toggle-icon{
		font-size: 1rem;
	}
	.button1, .button2, .search-box::placeholder, label, .search-status, .text-overlay p, .accordion-content p, #searchBox{
		font-size: 0.8rem;
	}
	.hero-section, .padding, .accordion, .text-overlay{
		padding: 10vw 4vw;
	}
	.padding2{
		padding: 10vw 4vw 0 4vw;
	}
	.button1, .button2{
		width: 140px;
		height: 45px;
	}
	.button1{
		margin-right: 20px;
	}
	.button2{
		margin-left: 20px;
	}
	.search-box{
		width: 75vw;
		height: 9vw;
	}
	.selection{
		gap: 15px;
	}
	label{
		padding-left: 32px;
	}
	label::before{
		width: 25px;
		height: 25px;
	}
	.checkbox:checked + label::after{
		left: 9px;
		top: -6px;
	}
	.row{
		margin-bottom: 10vw;
	}
	.image-container{
		height: 180px;
	}
	.column-3{
		min-height: 0;
		width: calc((100% - 25px) / 2);
	}
	.column-3:last-child:nth-child(odd) {
		grid-column: span 2;
		text-align: center;
		width: calc((100% - 25px) / 2);
	}
	.h3-box{
		margin: 2vw;
	}
	.accordion{
		grid-template-columns: 1fr;
		gap: 10vw;
	}
	.accordion-right{
		order: -1;
	}
}
@media (max-width: 376px){
	.hero-text h1{
		font-size: 1.8rem;
	}
	h2{
		font-size: 1.2rem;
	}
	h3, .text-overlay h3, .h3-box, .accordion-header span, .accordion-header.active .toggle-icon{
		font-size: 0.9rem;
	}
	.button1, .button2, .search-box::placeholder, label, .search-status, .text-overlay p, .accordion-content p, #searchBox{
		font-size: 0.7rem;
	}
	.button1, .button2{
		width: 130px;
		height: 35px;
	}
	.button1{
		margin-right: 10px;
	}
	.button2{
		margin-left: 10px;
	}
	label{
		padding-left: 28px;
	}
	label::before{
		width: 20px;
		height: 20px;
	}
	.checkbox:checked + label::after{
		width: 7px;
		height: 14px;
		left: 7px;
		top: -3px;
	}
	.image-container{
		height: 160px;
	}
}
@media (max-width: 320px){
	.hero-text h1{
		font-size: 1.6rem;
	}
	h2{
		font-size: 1.1rem;
	}
	h3, .text-overlay h3, .h3-box, .accordion-header span, .accordion-header.active .toggle-icon{
		font-size: 0.8rem;
	}
	.button1, .button2{
		width: 120px;
	}
	.selection{
		gap: 10px;
	}
	label{
		padding-left: 25px;
	}
	.button1{
		margin-right: 5px;
	}
	.button2{
		margin-left: 5px;
	}
	.image-container{
		height: 135px;
	}
}