@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-slider {
  	position: relative;
  	width: 100%;
  	height: 100vh;
  	overflow: hidden;
	align-items: center;
	justify-content: center;
	display: flex;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.slide.active{
    width: 100%;
    height: 100%;
}
.active {
  	opacity: 1;
  	z-index: 1;
}
.hero-text {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	text-align: center;
  	z-index: 2;
	width: 100%;
	background: rgba(248, 248, 248, 0.50);
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text-box {
	padding: 18px 0;
	border: none;
	width: 490px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-text h1{
  	color: #20120D;
	text-align: center;
	font-family: Oswald;
	font-size: 64px;
	font-weight: 500;
	margin-bottom: 24px;
}
.contact-btn {
  	display: inline-block;
  	padding: 18px;
	margin-top: 24px;
	width: 160px;
	height: 60px;
	background-color: #941B1E;
	color: #f8f8f8;
	font-size: 20px;
	font-weight: 400;
	border-radius: 8px;
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 4px rgba(32, 18, 13, 0.5);
	text-decoration: none;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-btn:hover{
	background-color: #b42325;
	transform: translateY(-2px);
	box-shadow: none;
}
.nav-arrow {
  	position: absolute;
  	top: 50%;
  	font-size: 40px;
  	color: #941B1E;
  	cursor: pointer;
  	z-index: 3;
  	user-select: none;
	transition: color 0.3s ease, transform 0.3s ease;
}
.nav-arrow:hover{
	color: #b42325;
	transform: translateY(-2px);
}
.nav-arrow.left {
  	left: 133px;
}
.nav-arrow.right {
  	right: 132px;
}

/* 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;
}
.margin{
	margin-top: 75px;
}
.intro-h2{
	width: 50%;
}
h2{
	font-size: 40px;
	color: #941B1E;
	font-weight: 500;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.flex h3{
	max-width: 50%;
}
h3, h3 a, h3 span{
	font-size: 28px;
	color: #20210D;
	font-weight: 400;
	position: relative;
}
.underline {
  	position: relative;
  	color: inherit;
  	text-decoration: none;
  	transition: color 0.3s ease;
}
.underline::after {
  	content: "";
  	position: absolute;
  	left: 0;
  	bottom: -2px; /* adjust spacing */
  	width: 100%;
  	height: 2px;
  	background-color: #941B1E;
  	transform: scaleX(1);
  	transform-origin: left;
  	transition: transform 0.3s ease;
}
.underline:hover {
  	color: #941B1E;
}
.underline:hover::after {
  	transform: scaleX(0);
}

.button{
	width: 160px;
	height: 60px;
	background-color: #941B1E;
	color: #f8f8f8;
	font-size: 20px;
	font-weight: 400;
	border-radius: 8px;
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 4px rgba(32, 18, 13, 0.5);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.button:hover{
	background-color: #b42325;
	transform: translateY(-2px);
	box-shadow: none;
}

/* Service Slider */
.padding-2 {
  	padding: 75px 0;
  	background-color: #eeeeee;
  	border-top: 1px #20120D solid;
  	border-bottom: 1px #20120D solid;
}
.middle {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	text-align: center;
}
.middle h3{
	width: 35%;
}
.service-slideshow {
  	overflow: hidden;
  	width: 100%;
  	box-sizing: border-box;
}
.slider-track {
  	display: flex;
  	white-space: nowrap;
  	width: fit-content;
  	animation: scroll-left 40s linear infinite;
}
.slide-group {
  	display: flex;
}
.image-wrapper {
  	width: 275px;
  	height: 275px;
  	border-radius: 8px;
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
  	margin-right: 25px;
  	transition: transform 0.3s ease;
  	cursor: pointer;
}
.image-wrapper:hover {
  	transform: scale(1.05);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.column-two{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 75px;
	align-items: stretch;
}
.img-container{
	position: relative;
	height: 100%;
	width: 100%;
	justify-content: center;
	display: flex;
}
.img-container img{
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}
.img-container::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(32, 18, 13, 0) 0%, rgba(32, 18, 13, 0.20) 100%);
    pointer-events: none;
}
.column-two > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.column-two h2, .column-two .portfolio-item {
  max-width: 100%;
  word-wrap: break-word;
}
.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}
.line-second {
	color: #20120D;
  	position: relative;
  	display: inline-block;
	padding-right: 30px;
}
.line-second-text {
    display: inline-block;
    max-width: 100%;
    position: relative;
	font-size: 28px;
}
.toggle{
	font-size: 28px;
	color: #941B1E;
	border: none;
	background: none;
}
.line-second .fi-rr-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
	margin-left: 8px;
}
.line-second:hover .fi-rr-arrow-right {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}
.line-second::before {
  	content: "";
  	position: absolute;
  	left: 0;
  	bottom: -3px;
  	height: 2px;
  	background-color: #941B1E;
  	width: 0%;
  	transition: width 0.3s ease;
}
.line-second i {
  	margin-left: 4px;
  	transition: transform 0.3s ease;
  	display: inline-block;
  	vertical-align: middle;
	color: #941B1E;
	font-size: 28px;
}
.line-second:hover::before {
  	width: 100%;
}
.line-second:hover i {
  	transform: translateX(4px);
}

.button-two{
	width: 200px;
}
.middle h2{
	width: 45%;
}
.img-container-two{
	width: 100%;
	max-width: 550px;
	height: auto;
	aspect-ratio: 1/1;
	color: #20120D;
	position: relative;
}
.image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.img-two{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gradient-overlay{
	position: absolute;
  	top: 0;
  	left: 0;
  	height: 100%;
	width: 100%;
	background: linear-gradient(0deg, rgba(32, 18, 13, 0.20) 0%, rgba(32, 18, 13, 0.00) 76%);
  	pointer-events: none;
}
.bottom-text{
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 75px;
	left: 75px;
	margin-right: 75px;
	font-size: 28px;
	color: #20120D;
	gap: 5px;
	z-index: 2;
	padding-bottom: 3px;
}
.bottom-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #941B1E;
    transition: width 0.3s ease, transform 0.3s ease;
    transform-origin: left center;
}
.image-link:hover .bottom-text::after {
    width: 100%;
}
.image-link:hover .fi-rr-arrow-right {
    transform: translateX(5px);
    color: #941B1E;
}
.bottom-text .fi-rr-arrow-right {
    font-size: 28px;
	color: #941B1E;
	transition: transform 0.3s ease;
}

/* Testimonial Container */
.testimonial-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 75px;
  position: relative;
}
.testimonial-slider {
	width: 100%;
	max-width: 975px;
  height: auto;
	padding: 0 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 350px;
	perspective: 1000px;
}
.testimonial-slide {
  position: absolute;
  width: 100%;
	max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
  background: #EEEEEE;
  border-radius: 8px;
  border: 1px #20120D solid;
  padding: 38px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease;
	opacity: 0;
  transform-origin: center;
  z-index: 1;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
	z-index: 2;
}
.testimonial-slide:not(.active) {
  opacity: 0;
  transform: translateX(-50%) scale(0.95);
}
.testimonial-slide.exit {
  opacity: 0;
  transform: translateX(-50%) scale(0.95);
}
.testimonial-slide h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.testimonial-slide p {
  font-size: 20px;
  margin: 0 30px;
}
.slider-status {
  font-size: 20px;
  color: #941B1E;
  transition: all 0.3s ease;
}
.slider-status.paused {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
.nav-arrow-2 {
  position: absolute;
  top: 40%;
  font-size: 28px;
  color: #941B1E;
  cursor: pointer;
  z-index: 4;
  user-select: none;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-arrow-2:hover {
  color: #b42325;
  transform: translateY(-2px);
}
.nav-arrow-2.left {
  left: 20px;
}
.nav-arrow-2.right {
  right: 20px;
}

@media (max-width: 768px){
	.hero-text h1{
		font-size: 3rem;
	}
	h2{
		font-size: 1.7rem;
	}
	h3, h3 a, h3 span, .line-second-text, .bottom-text, .bottom-text, i .fi-rr-arrow-right, .testimonial-slide h3, .nav-arrow-2, .toggle{
		font-size: 1.2rem;
	}
	button, .button, .button-two, .contact-btn, .testimonial-slide p, .slider-status{
		font-size: 0.9rem;
	}
	button:active, .button:active, .button-two:active, .contact-btn:active{
		box-shadow: none;
		transform: translateY(1px);
	}
	.button, .contact-btn{
		width: 150px;
	}
	.button-two{
		width: 190px;
	}
	.hero-slider {
    height: 80vh;
  }
  	.text-box {
    width: 90%;
    padding: 15px 0;
  }
  	.nav-arrow.left {
    left: 30px;
  }
  	.nav-arrow.right {
    right: 30px;
  }
	.padding, .padding-2 {
		padding: 4vw;
	}
	.intro-h2{
		width: 70%;
	}
	.middle h2{
		width: 70%;
	}
	.middle h3{
		width: 65%;
	}
	.image-wrapper {
		width: 220px;
		height: 220px;
	}
	.margin{
		margin-top: 50px;
	}
	.column-two{
		grid-gap: 50px;
	}
	.line-second .fi-rr-arrow-right{
		margin: 0;
		opacity: 1;
	}
	.line-second:hover::before{
		width: 0%;
	}
	.line-second:active .fi-rr-arrow-right {
		opacity: 1;
		transform: translateY(-50%) translateX(5px);
	}
	.line-second:active::before {
		width: 100%;
	}
	.line-second:active i {
		transform: translateX(4px);
	}
	.bottom-text{
		bottom: 35px;
		left: 35px;
	}
	.testimonial-container{
		margin-bottom: 50px;
	}
	.testimonial-slider{
		max-width: 700px;
		padding: 0;
	}
	.testimonial-slide{
		padding: 4vw;
	}
	.nav-arrow-2{
		width: 0;
		height: 0;
	}
}
@media (max-width: 426px){
	.hero-text h1{
		font-size: 2rem;
	}
	h2{
		font-size: 1.3rem;
	}
	h3, h3 a, h3 span, .line-second-text, .bottom-text, .bottom-text, i .fi-rr-arrow-right, .line-second i, .bottom-text .fi-rr-arrow-right, .testimonial-slide h3, .nav-arrow-2, .toggle{
		font-size: 1rem;
	}
	button, .button, .button-two, .contact-btn, .testimonial-slide p{
		font-size: 0.8rem;
	}
  	.hero-slider {
    	height: 100vh;
  	}
	.slide, .slide.active{
		width: 100%;
		height: auto;
		transform: translateY(50%);
	}
	.hero-slider .nav-arrow{
		display: none
	}
  	.button, .contact-btn {
		width: 140px;
		height: 45px;
		padding: 12px;
  	}
	.button-two{
		width: 160px;
	}
	.text-box {
    	width: 70%;
    	padding: 15px 0;
  	}
	.padding, .padding-2 {
		padding: 10vw 4vw;
	}
	.intro-h2{
		width: 100%;
	}
	.padding .flex{
		display: inline
	}
	.flex h3{
		max-width: 80%;
		margin-bottom: 50px;
	}
	.image-wrapper {
		width: 180px;
		height: 180px;
	}
	.margin{
		margin-top: 10vw;
	}
	.middle h3{
		width: 90%;
	}
	.column-two{
		display: inline;
	}
	.img-container{
		width: 60vw;
		height: auto;
		transform: translateX(25%);
		margin-bottom: 10vw;
	}
	.line-second::before{
		width: 0;
	}
	.line-second:active::before{
		width: 100%;
	}
	.line-second-text{
		width: 100%;
	}
	.middle h2{
		width: 90%;
	}
	.img-container-two{
		aspect-ratio: 2/1;
		width: 80%;
		transform: translateX(12.5%);
		margin-bottom: 10vw;
	}
	.bottom-text{
		bottom: 15px;
		left: 15px;
		margin-right: 4vw;
	}
	.testimonial-container{
		margin-bottom: 10vw;
	}
	.testimonial-slider{
		max-width: 90%;
		min-height: 320px;
	}
	.testimonial-slide{
		padding: 4vw;
	}
	.testimonial-slide p{
		margin: 0 20px;
	}
	.slider-status{
		display: none;
	}
}
@media (max-width: 376px){
	.hero-text h1{
		font-size: 1.8rem;
	}
	h2{
		font-size: 1.2rem;
	}
	h3, h3 a, h3 span, .line-second-text, .bottom-text, .bottom-text, i .fi-rr-arrow-right, .line-second i, .bottom-text .fi-rr-arrow-right, .testimonial-slide h3, .nav-arrow-2, .toggle{
		font-size: 0.9rem;
	}
	button, .button, .button-two, .contact-btn, .testimonial-slide p{
		font-size: 0.7rem;
	}
	.button, .contact-btn {
		width: 130px;
		height: 35px;
		padding: 12px;
  	}
	.button-two{
		width: 150px;
	}
	.image-wrapper {
		width: 150px;
		height: 150px;
	}
	.bottom-text{
		bottom: 8px;
		left: 10px;
	}
	.testimonial-slider{
		max-width: 90%;
	}
}
@media (max-width: 321px){
	.hero-text h1{
		font-size: 1.6rem;
	}
	h2{
		font-size: 1.1rem;
	}
	h3, h3 a, h3 span, .line-second-text, .bottom-text, .bottom-text, i .fi-rr-arrow-right, .line-second i, .bottom-text .fi-rr-arrow-right, .testimonial-slide h3, .nav-arrow-2, .toggle{
		font-size: 0.8rem;
	}
	.button, .contact-btn {
		width: 120px;
		padding: 10px;
  	}
	.button-two{
		width: 140px;
	}
	.image-wrapper {
		width: 130px;
		height: 130px;
	}
}