a, a:hover{
  text-decoration: none;
  color: inherit;
}
html, body{
  overflow-x: hidden;
}
p{
  margin-bottom: 0;
}
/* Font sizes */
/*Font Weights*/
.fw-300 {
	font-weight: 300 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

.fw-500 {
	font-weight: 500 !important;
}

.fw-600 {
	font-weight: 600 !important;
}

.fw-700 {
	font-weight: 700 !important;
}

/*Font Sizes*/


.fs-xs {
	font-size: 14px;
}

.fs-sm {
	font-size: 16px;
}

.fs-md {
	font-size: 18px;
}
.fs-lg {
	font-size: 20px;
}
.fs-xl {
	font-size: 24px;
}

.fs-2xl {
	font-size: 26px;
}

.fs-3xl {
	font-size: 36px;
}

@media screen and (min-width: 992px) {
	.fs-xs {
		font-size: 15px;
	}

	.fs-sm {
		font-size: 17px;
	}

	.fs-md {
		font-size: 22px;
	}
	.fs-lg {
		font-size: 26px;
	}
	.fs-xl {
		font-size: 30px;
	}

	.fs-2xl {
		font-size: 36px;
	}

	.fs-3xl {
		font-size: 50px;
	}
}

@media screen and (min-width: 1201px) {
	.fs-xs {
		font-size: 16px;
	}
	.fs-sm {
		font-size: 18px;
	}
	.fs-md {
		font-size: 24px;
	}
	.fs-lg { 
		font-size: 32px;
	}
	.fs-xl {
		font-size: 36px;
	}
	.fs-2xl {
		font-size: 40px;
	}
	.fs-3xl {
		font-size: 64px;
	}
}

/* Container Wrapper */
.container-w600 {
  max-width: 600px;
}
.container-w700 {
  max-width: 700px;
}
.container-w800 {
  max-width: 800px;
}

.container-w900 {
  max-width: 900px;
}

.container-w1000 {
  max-width: 1000px;
}

.container-w1100 {
  max-width: 1100px;
}

.container-w1200 {
  max-width: 1200px;
}

.container-w1300 {
  max-width: 1300px;
}

.container-w1400 {
  max-width: 1400px;
}

.container-w1500 {
  max-width: 1500px;
}

.container-w1600 {
  max-width: 1600px;
}
.container-w1700 {
  max-width: 1700px;
}
.container-w1800 {
  max-width: 1800px;
}
.container-wfhd {
  max-width: 1920px;
}


/* Button */
.lsf-btn {
  isolation: isolate;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: .5rem 1.5rem;
  border-radius: .5rem;
  text-align: center;
  width: 150px;
  transition: .4s ease-in-out;
  overflow: hidden;
}
.lsf-btn::before {
  position: absolute;
  content: '';
  z-index: -1;
  transition: .4s ease-in-out;
}
.lsf-btn.fit-width {
  width: fit-content;
  min-width: 150px;
}
/* Quote */
.lsf-quote-error-wrapper {
	width: 200px;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 100000000;
}

.lsf-quote-error-message {
	height: 50px;
	width: 100%;
	margin-bottom: .5rem;
	background-color: #f44336;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: .5rem;
	color: white;
	transform: translateY(100%);
	opacity: 0;
	transition: .3s ease;
	transition-property: transform, opacity;
}

.lsf-quote-error-message.active {
	transform: translateY(0);
	opacity: 1;
}
.error-msg {
  color: red;
  position: absolute;
  bottom: 0;
  transform: translateY(1.25rem);
  left: 12px;
  font-size: 14px;
  display: none;
  margin-bottom: 0 !important;
}

/* Testimonial Swipers */
.swiper.testimonial-swiper .testimonial-card{
	margin: 0 auto;
	height: 100%;
}
.swiper.testimonial-swiper .swiper-slide{
	height: auto;
}
.testimonial-card .stars {
	opacity: .6;
	flex-shrink: 0
}
.testimonial-card .name {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Remove later */
.center-line{
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100vh;
	width: 3px;
	background-color: orange;
}

/* Content section */

.two-column-content-section > div > * {
	margin-bottom: 1.5rem;
}
.two-column-content-section h2, .two-column-content-section h3 {
	margin-bottom: 2rem;
}
.two-column-content-section > div > *:last-child {
	margin-bottom: 0 !important;
}
.single-column-content-section > * {
	margin-bottom: 1.5rem;
}
.single-column-content-section h2, .single-column-content-section h3 {
	margin-bottom: 2rem;
}
.single-column-content-section > *:last-child {
	margin-bottom: 0 !important;
}