h1,h2,h3,h4,h5,h6{
	font-family: "DM Sans", Sans-serif !important;
}
a{
	font-family: "DM Sans", Sans-serif !important;
}
span{
	font-family: "DM Sans", Sans-serif !important;
}
li{
	font-family: "DM Sans", Sans-serif !important;
}
p{
	font-family: "DM Sans", Sans-serif !important;
}

@media only screen and (min-width: 1201px) {
	.about-container {
		min-height: fit-content;
	}
}
@media only screen and (max-width: 1200px) and (min-width: 992px){
	
}
@media only screen and (max-width: 991px) and (min-width: 768px){

}
@media only screen and (max-width: 767px) and (min-width: 300px){

}

@media only screen and (min-width: 767px) {
	.mobile-header {
		display: none;
	}
	.desktop-header {
		display: inline-block;
	}
}

@media only screen and (max-width: 767px) {
	.mobile-header {
		display: inline-block;
	}
	.desktop-header {
		display: none;
	}
}

.swiper-slide-image {
	width: 100% !important;
	height: 400px !important;
	object-fit: cover;
}

.about-container {
  min-height: 60vh;
  overflow: hidden;
  display: flex;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-container {
  flex: 1;
  height: auto;
}

.default-button a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.default-button a:focus,
.default-button a:focus-visible {
  color: #910C00 !important;
	stroke: #910C00 !important;
	fill: #910C00 !important;
}

.default-button a::before {
	position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #910C00;
  border-radius: inherit;
  transform: scale(0);
	opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

.default-button a:hover::before {
  transform: scale(1);
	opacity: 1;
	z-index: -1;
}

.default-button2 a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.default-button2 a::before {
	position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transform: scale(0);
	opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

.default-button2 a:hover::before {
  transform: scale(1);
	opacity: 1;
	z-index: -1;
}
