/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#hero-143 {
		/* Centers button */
		text-align: center;
		/* 144px - 300px - leaving extra space for the navigation */
		padding: clamp(5rem, 5vw, 10rem) 1rem 0;
		/* 130px - 450px */
		padding-bottom: clamp(12.125rem, 30.95vw, 28.125rem);
		position: relative;
		z-index: 1;
		/* Prevents white rectangle pseudos from overlapping the sections below */
		overflow: hidden;
	}

	#hero-143:before {
		/* Left side of the triangle */
		content: "";
		width: 31.25rem;
		/* make really long so it covers the whole screen all the way to desktop */
		height: 250rem;
		background: #000;
		opacity: 1;
		transform: rotate(-67deg);
		transform-origin: center;
		position: absolute;
		display: block;
		bottom: -139.6875rem;
		/* this makes the right edge sit at the 50% line at all times */
		right: 50%;
		z-index: 0;
	}

	#hero-143:after {
		/* Right side of the triangle */
		content: "";
		width: 31.25rem;
		height: 250rem;
		background: #000;
		opacity: 1;
		transform: rotate(67deg);
		transform-origin: center;
		position: absolute;
		display: block;
		bottom: -139.6875rem;
		/* this makes the left edge sit at the 50% line at all times */
		left: 50%;
		z-index: 0;
	}

	#hero-143 .cs-background {
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -2;
	}

	#hero-143 .cs-background:before {
		/* Overlay */
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0.7;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: 1;
		/* prevents the cursor from interacting with it */
		pointer-events: none;
	}

	#hero-143 .cs-background img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	#hero-143 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	#hero-143 .cs-title {
		/* 39px - 61px */
		font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
		font-weight: 700;
		line-height: 1.2em;
		text-align: center;
		max-width: 51.8125rem;
		width: min(34rem, 85vw);
		height: auto;
		/* 16px - 24px */
		margin: 0 auto clamp(1rem, 4vw, 1.5rem);
		color: #fff;
		position: relative;
		opacity: 0;
		transform: translateY(10px);
		animation: brp-fade-up 650ms ease forwards;
	}

	#hero-143 .cs-title:after {
		/* Divider Line */
		content: "";
		/* 60px - 100px */
		width: clamp(3.75rem, 9.5vw, 6.25rem);
		/* 4px - 8px */
		height: clamp(0.25rem, 0.8vw, 0.5rem);
		/* 16px - 24px */
		margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
		background: var(--primary);
		opacity: 1;
		position: relative;
		display: block;
	}

	#hero-143 .cs-text {
		/* 16px - 25px */
		font-size: clamp(1rem, 1.95vw, 1.5625rem);
		line-height: 1.5em;
		width: 100%;
		/* 464px - 800px */
		max-width: clamp(29rem, 60vw, 50rem);
		margin: 0 auto;
		/* 40px - 48px */
		margin-bottom: clamp(2.5rem, 4vw, 3rem);
		color: #fff;
		opacity: 0;
		transform: translateY(10px);
		animation: brp-fade-up 650ms ease forwards;
		animation-delay: 120ms;
	}

	#hero-143 .cs-button-solid {
		font-size: 1rem;
		/* 46px - 56px */
		line-height: clamp(2.875rem, 5.5vw, 3.5rem);
		text-decoration: none;
		font-weight: 700;
		margin: auto;
		color: var(--medium);
		min-width: 9.375rem;
		padding: 0 1.5rem;
		background-color: var(--primary);
		border-radius: 0.25rem;
		display: inline-block;
		position: relative;
		z-index: 1;
		opacity: 0;
		transform: translateY(10px);
		animation: brp-fade-up 650ms ease forwards;
		animation-delay: 220ms;
		transition: color 0.3s, transform 250ms ease;
	}
	#hero-143 .cs-button-solid:hover {
		transform: translateY(-2px);
	}

	#hero-143 .cs-button-solid:before {
		content: "";
		position: absolute;
		height: 100%;
		width: 0%;
		background: #000;
		opacity: 1;
		top: 0;
		left: 0;
		z-index: -1;
		border-radius: 0.25rem;
		transition: width 0.3s;
	}

	#hero-143 .cs-button-solid:hover {
		color: #fff;
	}

	#hero-143 .cs-button-solid:hover:before {
		width: 100%;
	}
}

/* Desktop - 1300px (To make image background parallax) */
@media only screen and (min-width: 81.25rem) {
	#hero-143 {
		background: url("../images/bg-1.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		/* makes the parallax effect */
		background-attachment: fixed;
	}

	#hero-143 .cs-background img {
		display: none;
	}
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#h-services-143 {
		/* 40px - 100px */
		padding: 0 1em clamp(2.5rem, 7.9vw, 6.25rem) 1rem;
		position: relative;
		/* give a higher z index than the hero so it can sit on top */
		z-index: 10;
	}

	#h-services-143 .cs-card-group {
		width: 100%;
		max-width: 29.0625rem;
		margin: 0 auto 0;
		/* negative margin pulls it up on top of the hero section */
		/* -46px to -76px - we're calculating whatever clamp is and multiplying by -1
		to make the value negative since clamp doesn't work with negative values */
		margin-top: calc(clamp(5rem, 13vw, 4.75rem) * -1);
		/* 40px - 60px top and bottom, 16px - 44px left & right */
		padding: clamp(2.5rem, 4.7vw, 3.75rem) clamp(1rem, 5.3vw, 2.75rem);
		box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
		border-radius: 0.3125rem;
		border-top: 8px solid var(--primary);
		background-color: rgba(51, 51, 51, 0.85);
		/* prevents padding and border from affecting height and width */
		box-sizing: border-box;
		transition: transform 300ms ease, box-shadow 300ms ease;
	}
	#h-services-143 .cs-card-group:hover {
		transform: translateY(-4px);
		box-shadow: 0px 28px 60px 0px rgba(0, 0, 0, 0.18);
	}

	#h-services-143 .cs-item {
		list-style: none;
		margin: 0 auto 2rem;
		width: 100%;
		max-width: 22.5rem;
	}

	#h-services-143 .cs-item:last-of-type {
		margin-bottom: 0;
	}

	#h-services-143 .cs-icon {
		/* 68px - 88px */
		width: clamp(4.25rem, 8.8vw, 5.5rem);
		/* 68px - 88px */
		height: clamp(4.25rem, 8.8vw, 5.5rem);
		margin: auto;
		/* 20px - 24px */
		margin-bottom: clamp(1.25rem, 5vw, 1.5rem);
		background: var(--primary);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#h-services-143 .cs-icon img {
		/* 44px - 52px */
		width: clamp(2.75rem, 5.8vw, 3.25rem);
		height: auto;
	}

	#h-services-143 .cs-title {
		font-size: 1.25rem;
		line-height: 1.2em;
		text-transform: uppercase;
		text-align: center;
		margin: 0 auto 0.5rem;
		color: var(--headerColor);
	}

	#h-services-143 .cs-text {
		font-size: 1rem;
		line-height: 1.5em;
		max-width: 22.5rem;
		margin: 0 auto;
		color: var(--bodyTextColor);
	}
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#h-services-143 .cs-card-group {
		max-width: 49rem;
		/* -76px to -320px - we're calculating whatever clamp is and multiplying by -1
			to make the value negative since clamp doesn't work with negative values */
		margin-top: calc(clamp(4.75rem, 20vw, 20rem) * -1);
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 2.5rem;
	}

	#h-services-143 .cs-item {
		width: 45%;
		max-width: 19.625rem;
	}

	#h-services-143 .cs-item:last-of-type {
		margin-bottom: 2rem;
	}
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
	#h-services-143 .cs-card-group {
		max-width: 80rem;
		flex-wrap: nowrap;
	}

	#h-services-143 .cs-item {
		margin: 0;
	}

	#h-services-143 .cs-item:last-of-type {
		margin-bottom: 0;
	}
}

/*-- -------------------------- -->
<---           Quote            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #quote-560 {
        padding: var(--sectionPadding);
		margin-bottom: 100px;
        background-color: var(--primary);
    }
    #quote-560 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #quote-560 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #quote-560 .cs-topper:before {
        /* yellow line */
        content: "";
        width: 3.125rem;
        height: 2px;
        background: var(--secondary);
        opacity: 1;
        display: block;
    }
    #quote-560 .cs-quote {
        /* 31px - 49px */
        font-size: clamp(1.9375rem, 1.5vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: 900;
        margin: 0;
        color: var(--bodyTextColorWhite);
		opacity: 0;
		transform: translateY(10px);
		animation: brp-fade-up 650ms ease forwards;
    }
    #quote-560 .cs-name {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.7vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        color: var(--secondary);
        display: block;
        letter-spacing: 0.01em;
		opacity: 0;
		transform: translateY(10px);
		animation: brp-fade-up 650ms ease forwards;
		animation-delay: 120ms;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #quote-560 {
        background-color: var(--medium);
    }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1147 {
        padding-top: 100px;
		padding-bottom: 30px;
		padding-left: 50px;
		padding-right: 50px;
        background-color: #000;
        position: relative;
        z-index: 1;
    }
    #footer-1147 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer-1147 .cs-top {
        width: 100%;
        /* 32px - 40px */
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        padding-bottom: 0.5vw;
        border-bottom: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    #footer-1147 .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 28px - 40px */
        column-gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    #footer-1147 .cs-li {
        list-style: none;
    }
    #footer-1147 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: #fff;
        display: block;
        transition: color 0.3s;
		font-weight: bold;
    }
    #footer-1147 .cs-link:hover {
        color: var(--primary);
    }
    #footer-1147 .cs-logo {
        width: 10.5rem;
        height: auto;
        display: block;
    }
    #footer-1147 .cs-logo-img {
        width: 85%;
        height: auto;
        display: block;
    }
    #footer-1147 .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #footer-1147 .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #footer-1147 .cs-social-li {
        list-style: none;
    }
    #footer-1147 .cs-social-link {
        width: 2rem;
        height: 2rem;
        background-color: #111;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #footer-1147 .cs-social-link:hover {
        background-color: var(--primary);
    }
    #footer-1147 .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(0);
        opacity: 1;
    }
    #footer-1147 .cs-social-icon {
        width: 0.75rem;
        height: auto;
        display: block;
        opacity: 1;
    }
    #footer-1147 .cs-copyright {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: #fff;
        display: block;
		text-align: center;
    }
    #footer-1147 .cs-copyright-link {
        font-size: inherit;
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }
    #footer-1147 .cs-copyright-link:hover {
        color: var(--secondary);
    }
    #footer-1147 .cs-background {
        display: none;
    }
    #footer-1147 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
		object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1147 .cs-top {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer-1147 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
	#footer-1147 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
		object-fit: unset;
    }
	#footer-1147 .cs-copyright {
		text-align: right;
    }
}

@keyframes brp-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*:before,
	*:after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
                                