

@font-face {
    font-family: 'MontserratExtraBold';
    src: url('fonts/Montserrat/MontserratExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'OverusedGroteskBold';
    src: url('fonts/OverusedGrotesk/OverusedGroteskBold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'OverusedGroteskBook';
    src: url('fonts/OverusedGrotesk/OverusedGroteskBook.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'OverusedGroteskExtraBold';
    src: url('fonts/OverusedGrotesk/OverusedGroteskExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'OverusedGroteskMedium';
    src: url('fonts/OverusedGrotesk/OverusedGroteskMedium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'OverusedGrotesk';
    src: url('fonts/OverusedGrotesk/OverusedGrotesk.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'OverusedGroteskSemiBold';
    src: url('fonts/OverusedGrotesk/OverusedGroteskSemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'HelveticaNeue';
    src: url('fonts/HelveticaNeueItalic/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000;
	overflow-x: hidden;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	max-width: 1600px;
	margin: auto;
	width: 69%;
	position: relative;
	z-index: 99999;
}
.logo img {
	max-width: 229px;
	width: 80%;
	height: auto;
}
.nav-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 3em;
}
.nav-menu li {
	margin-right: 20px;
}
.nav-menu li a,
.sidebar ul li a {
	text-decoration: none;
	font-size: 16px;
	color: white;
	font-family: "HelveticaNeue";
}
.get-started {
	padding: 1em 2em;
	border: 1px solid #CE252A;
	background-color: #CE252A;
	color: white;
	text-decoration: none;
	font-size: 16px;
}
.burger-menu {
	display: none;
	cursor: pointer;
}
.burger-menu svg {
	fill: #CE252A;
	width: 30px;
	height: 30px;
	z-index: 1;
}
.burger-menu.hidden {
	display: none;
}
.sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background-color: #333;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	transition: right 0.3s ease;
	padding: 50px 20px;
	z-index: 3;
}
.sidebar.open {
	right: 0;
	background: #000;
	backdrop-filter: blur(10px);
	background-color: rgb(128 128 128 / 10%);
	border: 1px solid #000000;
}
.sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
	width: 100%;
}
.sidebar ul li {
	margin-bottom: 20px;
}
.sidebar ul li a {
	font-size: 16px;
	color: white;
	text-decoration: none;
}
.sidebar .get-started {
	margin-top: 20px;
}
.close-sidebar {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	color: white;
	cursor: pointer;
}
@media (max-width: 992px) {
	.nav-menu {
		display: none;
	}
	.burger-menu {
		display: block;
	}
	.logo img {
		width: 150px;
	}
}
@media (max-width: 1084px) {
	.header,
	.content {
		padding: 15px 5em !important;
		width: 100% !important;
	}
}
.content {
	margin: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.top-columns {
	display: flex;
	width: 100%;
	margin: 0 0 2em;
	padding-top: 2em;
}
.top-columns .top-1, .top-columns .top-2 {
	width: 50%;
}
.top-1 {
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 20em;
}
.top-1 .head-title {
	font-family: 'OverusedGrotesk';
	font-size: 4em;
	margin-bottom: 10px;
	color: #fff;
	line-height: 1em;
}
.top-1 .head-text {
	font-family: 'OverusedGrotesk';
	font-size: 1.25em;
	margin: 1.8em 0 2em;
	color: #fff;
}
.top-svg-container {
	margin-top: 50px;
}
.top-2 {
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}
.top-2 video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (min-width: 1550px) and (max-width: 1700px) {
	.top-1 .head-title {
		font-size: 3.6em;
	}
	.top-1 {
		padding-left: 17em;
	}
	.top-columns {
		margin: -9em 0;
	}
}
@media (min-width: 1400px) and (max-width: 1549px) {
	.top-1 .head-title {
		font-size: 3.4em;
	}
	.top-1 {
		padding-left: 14em;
	}
	.top-columns {
		margin: -7em 0 2em;
	}
}
@media (min-width: 1350px) and (max-width: 1399px) {
	.top-1 .head-title {
		font-size: 3.2em;
	}
	.top-1 {
		padding-left: 11em;
	}
	.top-columns {
		margin: -6em 0;
	}
}
@media (min-width: 1200px) and (max-width: 1349px) {
	.top-1 .head-title {
		font-size: 2.6em;
	}
	.top-1 {
		padding-left: 9em;
	}
	.top-1 .head-text {
		font-size: 1.2em;
	}
	.top-1 .button {
		font-size: 1.1em !important;
	}
	.top-columns {
		margin: -7em 0;
	}
}
@media (min-width: 1081px) and (max-width: 1199px) {
	.top-1 {
		padding-left: 8em;
	}
}
@media (min-width: 992px) and (max-width: 1080px) {
	.top-1 {
		padding-left: 4em;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.top-1 .head-title {
		font-size: 2.6em;
	}
	.top-1 .head-text {
		font-size: 1.1em;
	}
	.top-columns {
		margin: -2.4em 0;
	}
	.nav-menu {
		gap: 2em;
	}
	.get-started {
		padding: .75em 1.5em;
	}
}
@media (min-width: 993px) and (max-width: 1199px) {
	.top-1 .button {
		font-size: 1em !important;
		padding: .8em 1.85em !important;
	}
}
@media (max-width: 992px) {
	.logo svg {
		width: 60%;
	}
	.header,
	.content {
		padding: 15px 1em !important;
	}
	.top-columns {
		flex-direction: column-reverse;
		margin: -2em 0 8em;
	}
	.top-columns .top-2 {
		width: 100%;
		top: 0;
		right: 0;
		z-index: 0;
	}
	.top-columns .top-1 {
		z-index: 2;
		padding-left: 0;
		margin: auto;
		width: fit-content;
		margin: auto;
		display: flex;
		align-items: center;
		align-content: center;
		text-align: center;
	}
	.top-2 {
		z-index: 1;
		position: relative;
		top: 0;
		margin: 0 0 -100%;
		right: 0;
	}
	.top-1 .button {
		font-size: 1.25em !important;
		padding: .6em 1.2em !important;
	}
}
@media (min-width: 600px) and (max-width: 991px) {
	.company-info .company-info-1 .title {
		font-size: 2.6em !important;
	}
	.about-us-3 .title {
		font-size: 2em !important;
	}
	.top-1 .head-text {
		font-size: 1.4em;
	}
	.top-1 .head-title {
		font-size: 4em;
	}
	.top-1 .button {
		font-size: 1.1em !important !important;
		padding: .6em 1.1em !important;
	}
	.white-linear-bg {
		padding: 10em 0 5em !important;
	}
}
@media (min-width: 400px) and (max-width: 599px) {
	.white-linear-bg {
		padding: 2em 0 3em !important;
	}
	.company-info .company-info-1 .title {
		font-size: 2.4em !important;
	}
	.about-us-3 .title {
		font-size: 1.8em !important;
	}
	.top-1 .head-text {
		font-size: 1.2em;
	}
	.top-1 .head-title {
		font-size: 3.2em;
	}
	.top-1 .button {
		font-size: .95em !important;
		padding: .6em 1.1em;
	}
	.services-container,
	.company-container {
		padding: 0 10% 5% !important;
	}
    .service-box {
        min-width: 300px !important;
    }
	.company-box {
        min-width: 380px !important;
    }
}
@media (max-width: 399px) {
	.services-container,
	.company-container {
		padding: 0 0 5% !important;
	}
	.services-section {
		padding: 0;
	}
}
.top-1 .button {
	font-family: "MontserratExtraBold";
	font-size: 1.05em;
	color: #fff;
	padding: .8em 2.6em;
	border-radius: 2px !important;
	font-weight: 900;
	background-color: #CE252A;
	border: 1px solid #CE252A;
	text-decoration: none;
	display: inline-block;
}
@media (min-width: 300px) and (max-width: 399px) {
	.white-linear-bg {
		padding: 2em 0 4em !important;
	}
	.about-us-3 .title {
		font-size: 1.6em !important;
	}
	.company-info .company-info-1 .title {
		font-size: 2.2em !important;
	}
	.white-linear-bg {
		padding: 2em 0 2em !important;
	}
	.top-1 .head-text {
		font-size: .9em;
	}
	.top-1 .head-title {
		font-size: 1.8em;
	}
	.top-1 .button {
		font-size: .85em !important;
		padding: .6em 1.1em !important;
	}
	.top-svg-container img {
		width: 200px;
		height: auto;
	}
	#ellipse-middle-left {
		margin: -47% 0 !important;
	}
	.services-section .services-section-title {
		font-size: 1.4em !important;
	}
	.services-section .services-section-sub-title {
		font-size: .95em !important;
	}
	.top-columns {
		margin: -2em 0 4em !important;
	}
    .service-box .service-box-title {
        font-size: 1.25em;
    }
	.company-box .title {
		font-size: 1.1em;
	}
	.company-box .description,
	.company-box .bottom-elements .get-started	{
		font-size: .9em;
	}
}
@media (max-width: 299px) {
	.about-us-3 .title {
		font-size: 1.4em !important;
	}
	.company-info .company-info-1 .title {
		font-size: 2em !important;
	}
	.white-linear-bg {
		padding: 2em 0 1em !important;
	}
	.top-1 .head-text {
		font-size: .8em;
	}
	.top-1 .head-title {
		font-size: 1.6em;
	}
	.top-1 .button {
		font-size: .75em !important;
		padding: .6em 1.1em !important;
	}
	.top-svg-container img {
		width: 200px;
		height: auto;
	}
	#ellipse-middle-left {
		margin: -47% 0 !important;
	}
	.services-section .services-section-title {
		font-size: 1.4em !important;
	}
	.services-section .services-section-sub-title {
		font-size: .95em !important;
	}
	.top-columns {
		margin: -2em 0 4em !important;
	}
    .service-box .service-box-title {
        font-size: 1.25em;
    }
	.company-box .title {
		font-size: .9em;
	}
	.company-box .description,
	.company-box .bottom-elements .get-started	{
		font-size: .7em;
	}
}
@media (min-width: 1301px) and (max-width: 1550px) {
	.about-us-3 .title {
		font-size: 2.4em !important;
	}
}
@media (min-width: 992px) and (max-width: 1300px) {
	.about-us {
		padding: 6em 8% !important;
	}
	.about-us-3 .title {
		font-size: 2.6em !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.about-us {
		padding: 0 4% !important;
		margin: 0;
	}
	.about-us-3 .title {
		font-size: 2.4em !important;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.company-box {
		min-width: 400px !important;
	}
}
@media (min-width: 550px) and (max-width: 650px) {
	.services-container,
	.company-container {
		padding: 0 10% 5% !important;
	}
	.testimonials {
		padding: 12% 12% !important;
	}
}
@media (min-width: 400px) and (max-width: 549px) {
	.services-container,
	.company-container {
		padding: 0 5% 5% !important;
	}
	.testimonials {
		padding: 12% 10% !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: 1em;
		padding: .8em 1.8em;
	}
	.service-box {
		min-width: 300px !important;
	}
	.company-box {
		min-width: 360px !important;
	}
}
@media (max-width: 399px) {
	.services-container,
	.company-container {
		padding: 0 2% 5% !important;
	}
	.testimonials {
		padding: 12% 10% !important;
	}
	.service-box {
		min-width: 250px !important;
	}
	.company-box	{
		min-width: 290px !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .8em;
		padding: .8em 1.8em;
	}
}
.services-section {
	text-align: center;
	color: white;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.services-section .services-section-sub-title {
	font-family: 'OverusedGrotesk';
	color: #CE252A;
	font-size: 1.15em;
	margin: 0 0 .6em;
	display: block;
}
.services-section .services-section-title {
	font-family: 'OverusedGrotesk';
	font-size: 2em;
	margin: 0 0 15px;
	color: #fff;
	line-height: .8 !important;
	margin: 0 0 1.8em;
}
.services-container,
.testimonials {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0% 15% 5%;
    margin: auto;
}
.services-container {
	margin: 2em auto;
}
.testimonials {
    gap: 10% !important;
    padding: 16% 10% 13.8% !important;
}
a.service-box {
	text-decoration: none;
	color: inherit;
}
.service-box {
	background: radial-gradient(circle at top, rgba(238, 28, 37, 0.3) 5%, #101010 50%);
	border: 1px solid #707070;
	padding: 20px;
	width: 30%;
	min-width: 400px;
	text-align: center;
	transition: all 0.3s ease;
	padding: 4em 2em 1.6em;
	margin: auto;
	min-height: 37em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
@media (max-width: 780px) {
	.service-box,
	.company-box	{
		min-height: auto;
	}
}
@media (max-width: 500px) {
	.service-box img{
		width: 120px;
		height: 120px;
		margin: 0;
	}
	.service-box .service-box-title {
        font-size: 1.2em;
    }
    .service-box .service-box-text, .service-box a {
        font-size: .9em;
    }
	.service-box,
	.company-box	{
		padding: 1em 1em 1.2em;
	}
}
.service-box:hover {
	box-shadow: inset 0 0 5px whitesmoke,
				inset 10px 0 20px #CE252A,
				inset -10px 0 20px #CE252A,
				inset 10px 0 100px #ffffff00,
				inset -10px 0 100px #ffffff00,
				0 0 0px #fff,
				-2px 0 10px #CE252A,
				2px 0 10px #CE252A;
	background: radial-gradient(circle at center, rgba(238, 28, 37, 1) 20%, rgb(238 28 37 / 40%) 75%);
}
.service-box:hover .service-box-title,
.service-box:hover .service-box-text,
.service-box:hover a {
	color: white;
}
.service-box img {
	margin: 0 auto 2em;
	width: 180px;
}
.service-box .service-box-title {
	font-size: 1.8em;
	color: white;
	margin: 0 0 1.6em;
	display: block;
	font-family: 'OverusedGroteskSemiBold';
}
.service-box .service-box-text {
	font-size: 1.2em;
	color: #A2A2A2;
	margin: 0 0 1.6em;
	font-family: 'OverusedGrotesk';
}
.service-box a,
.service-box-link {
	font-size: 1.2em;
	color: #CE252A;
	text-decoration: none;
	display: inline-block;
	transition: color 0.3s ease;
	position: relative;
	bottom: 0;
	font-family: 'OverusedGrotesk';
}
@media (min-width: 500px) and (max-width: 768px) {
	.about-us {
		padding: 0 4% !important;
		margin: 0;
	}
}
@media (max-width: 499px) {
	.about-us {
		padding: 0 4% !important;
		margin: 0;
	}
}
@media (max-width: 768px) {
	.service-box,
	.company-box	{
		width: 100%;
	}
	.about-us-1,
	.about-us-3 {
		flex: 1 1 100% !important;
		padding: 0 !important;
	}
	.service-box .service-box-text,
	.service-box a {
		font-size: 1.1em;
	}
	.service-box .service-box-title {
		font-size: 1.5em;
	}
	.about-us {
		padding: 0 10%;
	}
	.about-us-3 .title {
		font-size: 2em !important;
		text-align: center;
		margin: auto;
	}
	.about-us-3 .description,
	.about-us-3 .read-more	{
		text-align: center;
		margin: auto;
	}
	.about-us-1 span {
		font-size: 1.2em !important;
		margin: auto;
	}
}
@media (max-width: 600px) {
	.about-us {
		padding: 0 6% !important;
	}
	.about-us-3 .read-more {
		font-size: 1.1em !important;
	}
}
.white-linear-bg {
	background: linear-gradient(to right, #FFF7F7 55%, #FFFFFF);
	padding: 8em 0 8em;
	width: 100%;
    z-index: 0;
    position: relative;
	margin: auto;
}
@media (min-width: 1600px) and (max-width: 1700px) {
	.white-linear-bg {
		padding: 0 0 2em !important;
		margin: 0 0 0 !important;
	}
	.about-us {
		margin: 0 !important;
	}
}
@media (min-width: 1400px) and (max-width: 1599px) {
	.white-linear-bg {
		padding: 6em 0 2em !important;
		margin: 0 0 0 !important;
	}
	.about-us {
		margin: 0 !important;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
	.white-linear-bg {
		padding: 0 0 2em !important;
		margin: 0 0 0 !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.white-linear-bg {
		padding: 0 0 2em !important;
		margin: 0 0 0 !important;
	}
	.about-us {
		margin: 0 !important;
	}
}
@media (min-width: 2000px) and (max-width: 2500px) {
	.testimonials-2 .nested-1 {
		margin-top: -25em !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: -28em !important;
	}
}
@media (min-width: 2499px) and (max-width: 3000px) {
	.testimonials-2 .nested-1 {
		margin-top: -30em !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: -34em !important;
	}
}
@media (min-width: 3001px) {
	.testimonials-2 .nested-1 {
		margin-top: -36em !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: -40em !important;
	}
}
.about-us {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15%;
	gab: 10%;
}
.about-us-1 {
	flex: 1 1 35%;
	box-sizing: border-box;
	padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.about-us-3 {
	box-sizing: border-box;
	flex: 1 1 65%;
    box-sizing: border-box;
    padding: 0 3em 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-us-1 span {
	font-family: "OverusedGrotesk";
	font-size: 1.4em;
	color: #CE252A;
	text-align: center;
}
.about-us-3 .title {
	font-family: 'OverusedGroteskSemiBold';
	font-size: 3em;
	color: #000;
	line-height: .9em;
}
.about-us-3 .description {
	font-family: "OverusedGrotesk";
	font-size: 1.2em;
	color: #000;
	margin: 1em 0;
}
.about-us-3 .read-more,
.about-us-3 .read-more:hover {
	font-family: 'OverusedGroteskExtraBold';
	font-size: 1.3em;
	color: #fff;
	width: fit-content;
	padding: .8em 2.2em;
	background: #CE252A;
	cursor: pointer;
	text-decoration: none;
}
.company-container {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15%;
    margin: 8em 0;
}
.company-box {
	background: #fff;
	padding: 20px;
	width: 30%;
	min-width: 400px;
	text-align: start;
	transition: all 0.3s ease;
	padding: 2.6em 2em 1.4em;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
	display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: space-around;
    align-items: flex-start;
	cursor: pointer;
}
.bottom-elements {
	display: flex;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.bottom-elements img {
	width: 60px;
	height: 60px;
}
.company-box .title {
	font-family: 'OverusedGroteskSemiBold';
	font-size: 2em;
	color: #000;
	margin: 0 0 .6em;
    line-height: 1em;
}
.company-box .description {
	font-family: "OverusedGrotesk";
	font-size: 1.2em;
	color: #000;
	margin: 0 0 1.6em;
}
.company-box .bottom-elements .get-started-img {
	width: 90px;
	height: 90px;
	border: 1px solid #000;
    background: #000;
    border-radius: 50% 50%;
    padding: .5em;
	display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.company-box .bottom-elements .get-started {
	font-family: "OverusedGrotesk";
	font-size: 1.2em;
	color: #000;
	background: none;
	border: none;
	padding: 0 .8em;
	cursor: pointer;
}
.company-box:hover {
    background: radial-gradient(circle at top right, #FF0000 -45%, #000000 100%);
}
.company-box:hover .title,
.company-box:hover .description {
    color: #fff;
}
.company-box:hover .get-started {
    color: #CE252A;
}
.company-box:hover .get-started-img {
    border: 1px solid #CE252A;
}
.company-info {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5%;
    padding: 0 12%;
    margin: 8em 0;
}
.company-info-1,
.company-info-2 {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}
.company-info-1 {
    width: 55%;
    padding: 0 5em 0 0;
}
.company-info-2 {
    width: 40%;
    align-content: center;
    align-items: center;
}
.company-info-2 img {
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 70%;
}
.info-list {
    list-style: none;
}
.info-list li {
    padding-left: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><g id="Group_8930" data-name="Group 8930" transform="translate(-362.8 -4031)"><path id="Path_3519" data-name="Path 3519" d="M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z" transform="translate(359.8 4028)" fill="%23ce252a"/><path id="Path_3518" data-name="Path 3518" d="M12,18.75l4.5,4.5,7.5-9" transform="translate(359.8 4028)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/></g></svg>');
    background-repeat: no-repeat;
    background-position: 0 0.2em;
    background-size: 20px 20px;
    margin-bottom: 10px;
	color: #000;
    font-family: 'OverusedGroteskSemiBold';
    font-size: 1.15em;
	color: #000;
}
.info-list ul {
    list-style: none;
}
@media (max-width: 992px) {
	.contact .contact-1,
	.contact .contact-2 {
		display: block;
		width: 100%;
	}
	.testimonials .testimonials-2 {
		margin: 4em 0 0;
	}
    .company-info {
        position: relative;
        display: block;
    }
    .company-info-1 {
        width: 100%;
        z-index: 1;
        position: relative;
		padding: 0;
    }
    .company-info-2 {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        margin: -80% 0 0;
        z-index: 0;
        opacity: 0.3;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.company-info .company-info-1 .description,
.company-info .company-info-1 .sub-title,
.testimonials .testimonials-1 .testimonials-text-box .description {
    font-family: 'OverusedGrotesk';
    font-size: 1.2em;
	color: #CE252A;
}
.testimonials .testimonials-1 .testimonials-text-box .description{
	color: #fff;
}
.company-info .company-info-1 .title {
    line-height: .9em;
	margin: .6em 0;
	color: #000 !important;
}
.company-info .company-info-1 .description {
	color: #000;
}
.company-info .company-info-1 .description.first {
	margin: .6em 0;
}
.company-info .company-info-1 .description.last {
	margin: 0 0 2em;
}
.company-info .company-info-1 .title {
    font-family: 'OverusedGroteskSemiBold';
    font-size: 3.4em;
	color: #CE252A;
}
@media (min-width: 1500px) and (max-width: 1599px) {
    .testimonials {
		padding: 16% 10% 13.6% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: -19em !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: -22.4em !important;
	}
}
@media (min-width: 1600px) and (max-width: 1780px) {
    .testimonials {
		padding: 16% 10% 13.6% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: -24.5em !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: -20em !important;
	}
}
@media (min-width: 1300px) and (max-width: 1500px) {
	.company-info .company-info-1 .title,
	.testimonials .testimonials-1 .title {
		font-size: 3em;
	}
	.company-info-1 {
		width: 60% !important;
	}
	.company-info-2 {
		width: 30% !important;
	}
}
@media (min-width: 993px) and (max-width: 1500px) {
	.company-info .company-info-1 .title,
	.testimonials .testimonials-1 .title {
		font-size: 2.8em;
	}
	.company-info-1 {
		width: 60% !important;
	}
	.company-info-2 {
		width: 30% !important;
	}
}
.testimonials {
	display: flex;
	gap: 10px;
	background-image: url('https://hntc.io/wp-content/uploads/2024/09/testimonials-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top -3.6em right 0;
}
.testimonials-1 {
	width: 37%;
	height: fit-content;
}
.testimonials-2 {
	width: 53%;
	display: flex;
	gap: 2em;
	height: fit-content;
}
.testimonials-2 .nested-1,
.testimonials-2 .nested-2 {
	width: 49%;
	z-index: 1;
	position: relative;
	margin-top: -21em;
    gap: 2em;
    display: flex;
    flex-direction: column;
}
.testimonials-2 .nested-1 {
	margin-top: -21em;
}
.testimonials-2 .nested-2 {
	margin-top: -27em;
}
@media (min-width: 600px) and (max-width: 992px) {
	.testimonials-1,
	.testimonials-2 {
		width: 100% !important;
	}
	.testimonials-2 .nested-1,
	.testimonials-2 .nested-2 {
		width: 49% !important;
	}
}
@media (max-width: 599px) {
	.testimonials-1,
	.testimonials-2 {
		width: 100% !important;
	}
	.testimonials-2 .nested-1,
	.testimonials-2 .nested-2 {
		width: 100% !important;
	}
}
.testimonials .testimonials-1 .testimonials-text-box {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}
.testimonials .testimonials-1 .title {
    font-family: 'OverusedGroteskSemiBold';
    font-size: 3.4em;
	color: #fff;
	line-height: 0.9em;
}
.testimonials .testimonials-1 .testimonials-text-box .description {
	margin: 2em 0;
	font-family: 'OverusedGroteskSemiBold';
}
.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
	font-family: 'MontserratExtraBold';
	font-size: 1.2em;
	color: #fff;
	width: fit-content;
	padding: .8em 2.2em;
	background: #CE252A;
	cursor: pointer;
	text-decoration: none;
}
#ellipse-top-left {
	position: fixed;
	top: -55%;
	left: -35%;
	z-index: 1;
	pointer-events: none;
	width: 80%;
	max-width: 1400px;
}
#ellipse-middle-left {
	position: absolute;
	left: -46%;
	z-index: 1;
	pointer-events: none;
}
#ellipse-bottom-right {
	position: absolute;
	right: -17%;
	z-index: 1;
	pointer-events: none;
}
#footer-top-ellipse {
	position: absolute;
	right: -17%;
	top: 0;
	z-index: 1;
	opacity: .8;
	pointer-events: none;
}
#footer-bottom-ellipse {
	position: absolute;
	left: -46%;
	bottom: 0;
	z-index: 1;
	opacity: .5;
	pointer-events: none;
}
@media (min-width: 1700px) and (max-width: 1919px) {
	#footer-top-ellipse {
		transform: translate(100%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1600px) and (max-width: 1699px) {
	#footer-top-ellipse {
		transform: translate(94%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1500px) and (max-width: 1599px) {
	#footer-top-ellipse {
		transform: translate(85%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1400px) and (max-width: 1499px) {
	#footer-top-ellipse {
		transform: translate(79%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1300px) and (max-width: 1399px) {
	#footer-top-ellipse {
		transform: translate(66%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1280px) and (max-width: 1299px) {
	#footer-top-ellipse {
		transform: translate(56%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 992px) and (max-width: 1279px) {
	#footer-top-ellipse {
		transform: translate(49%, 17%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 500px) and (max-width: 991px) {
	#footer-top-ellipse {
		transform: translate(35%, 17%);
		margin: -100% 0;
		opacity: .6;
	}
}
.glass-box:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(65px);
    -webkit-backdrop-filter: blur(65px);
    z-index: -1;
}
.glass-box {
	width: 100%;
	padding: 2em 1.6em 2.2em;
	backdrop-filter: blur(10px);
	border-radius: 15px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	background-color: rgb(172 172 172 / 20%);
    border: 1px solid #70707099;
}
.glass-box .avatar-name .name,
.glass-box .description,
.glass-box .job {
	font-family: "OverusedGrotesk";
	color: #fff;
}

.glass-box .avatar-name .name {
	font-size: 1.2em;
	font-family: 'OverusedGroteskSemiBold';
}
.glass-box .description {
	font-size: 1em;
	margin: 0 0 1em;
	font-family: 'OverusedGroteskBook';
}
.glass-box .job {
	font-size: 1.1em;
	font-family: 'OverusedGrotesk';
}
.glass-box .avatar-name {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-content: center;
    align-items: center;
	margin: 0 0 1em;
}
.glass-box .avatar-name img {
	width: 60px;
	height: 60px;
}
@media (min-width: 993px) and (max-width: 1399px) {
	.company-info-2 img {
		width: 100% !important;
	}
    .company-info-2 {
        width: 35% !important;
    }
}
@media (min-width: 1350px) and (max-width: 1499px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.6em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1.1em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .8em !important;
	}
	.testimonials-1 {
		width: 33% !important;
	}
	.testimonials-2 {
		width: 57% !important;
	}
	.testimonials {
		padding: 11% 10% 12.4% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: -13em;
	}
	.testimonials-2 .nested-2 {
		margin-top: -17.4em;
	}
}
@media (min-width: 1280px) and (max-width: 1349px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.8em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1.2em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .9em !important;
	}
	.testimonials-1 {
		width: 100% !important;
	}
	.testimonials-2 {
		width: 100% !important;
	}
	.services-container, .testimonials {
		padding: 4% 16% 5% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 3em;
	}
	.testimonials-2 .nested-2 {
		margin-top: -3em;
	}
}
@media (min-width: 1200px) and (max-width: 1279px) {
	.services-container,
	.company-container {
		padding: 0 12% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 400px !important;
    }
}
@media (min-width: 1100px) and (max-width: 1199px) {
	.services-container,
	.company-container {
		padding: 0 7% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 400px !important;
    }
}
@media (min-width: 1080px) and (max-width: 1099px) {
	.services-container,
	.company-container {
		padding: 0 3% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 400px !important;
    }
}
@media (min-width: 1024px) and (max-width: 1079px) {
	.services-container,
	.company-container {
		padding: 0 5% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 360px !important;
    }
}
@media (min-width: 992px) and (max-width: 1023px) {
	.services-container,
	.company-container {
		padding: 0 3% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 360px !important;
    }
}
@media (min-width: 992px) and (max-width: 1279px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.8em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1.2em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .9em !important;
	}
	.testimonials-1 {
		width: 100% !important;
	}
	.testimonials-2 {
		width: 100% !important;
	}
	.testimonials {
		padding: 10% 12% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 3em;
	}
	.testimonials-2 .nested-2 {
		margin-top: -2em;
	}
}
@media (max-width: 779px) {
    .testimonials-2 .nested-1 {
        margin: 3em 0 2em !important;
    }
}
@media (min-width: 900px) and (max-width: 991px) {
	.services-container,
	.company-container {
		padding: 0 3% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 360px !important;
    }
}
@media (min-width: 600px) and (max-width: 899px) {
	.services-container,
	.company-container {
		padding: 0 12% 5% !important;
	}
    .service-box,
	.company-box	{
        min-width: 400px !important;
    }
}
@media (min-width: 780px) and (max-width: 991px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.8em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1.2em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .9em !important;
	}
	.testimonials-1 {
		width: 100% !important;
	}
	.testimonials-2 {
		width: 100% !important;
	}
	.testimonials {
		padding: 12% 10% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 3em;
	}
	.testimonials-2 .nested-2 {
		margin-top: -1em;
	}
}
@media (min-width: 500px) and (max-width: 779px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.4em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1.1em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .9em !important;
	}
	.testimonials-1 {
		width: 100% !important;
	}
	.testimonials-2 {
		width: 100% !important;
		display: block;
	}
	.testimonials {
		padding: 12% 16% !important;
	}
	.services-container,
	.company-container {
		padding: 0 16%  5% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 0;
		width: 100% !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: 0;
		width: 100% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 3em;
	}
	.testimonials-2 .nested-2 {
		margin-top: -1em;
	}
	.company-box .title {
		font-size: 1.5em;
	}
	.company-box .description,
	.company-box .bottom-elements .get-started	{
		font-size: 1.1em;
	}
}
@media (max-width: 350px) {
	.services-section {
		padding: 0 !important;
	}
}
@media (max-width: 499px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.2em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .description {
		font-size: 1em !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .75em !important;
	}
	.testimonials-1 {
		width: 100% !important;
        display: block !important;
	}
	.testimonials-2 {
		width: 100% !important;
		display: block;
	}
	.testimonials {
		padding: 12% 10% !important;
	}
	.services-container,
	.company-container {
		padding: 0 3% 5% !important;
	}
	.testimonials-2 .nested-1 {
		margin-top: 0;
		width: 100% !important;
	}
	.testimonials-2 .nested-2 {
		margin-top: 0;
		width: 100% !important;
	}
	.company-box .title {
		font-size: 1.25em;
	}
	.company-box .description,
	.company-box .bottom-elements .get-started	{
		font-size: 1em;
	}
}
@media (min-width: 1590px) and (max-width: 1810px) {
	.services-container,
	.company-container {
		padding: 0% 10% 5% !important;
	}
}
@media (min-width: 1350px) and (max-width: 1369px) {
	.services-container,
	.company-container {
		padding: 0% 17% 5% !important;
	}
}
@media (min-width: 1370px) and (max-width: 1589px) {
	.services-container,
	.company-container	{
		padding: 0% 19% 5% !important;
	}
}
@media (max-width: 1349px) {
	.testimonials {
		background-size: cover;
		background-position: top -4.6em right 0;
	}
}
.content,
.white-linear-bg,
.testimonials {
	max-width: 1920px;
}
@media (min-width: 1920px) {
	#ellipse-middle-left {
		transform: translate(-14%, 0);
		width: 40%;
	}
}
.contact {
	display: flex;
	width: 100%;
	margin: -24em 0 0;
	z-index: 0;
	position: relative;
}
.contact .contact-1 a,
.contact .contact-2 a {
	width: 100%;
}
.contact .contact-1,
.contact .contact-2 {
	width: 50%;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6em 6em 6em 12em;
	gap: 20px;
	text-decoration: none;
}
.contact .contact-1 {
	background: #CE252A;
}
.contact .contact-2 {
	background: #EDEDED;
}
.contact .text {
	display: flex;
    flex-direction: column;
    width: auto;
    max-width: 400px;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
	margin: 0 auto 0 0;
}
.contact .text .title {
	font-family: 'OverusedGroteskMedium';
	font-size: 2.2em;
	margin: 0 0 .6em;
}
.contact .text .description {
	font-family: "OverusedGrotesk";
    font-size: 1.3em;
}
.contact .contact-1 .text .title,
.contact .contact-1 .text .description {
	color: #fff;
}
.contact .contact-2 .text .title,
.contact .contact-2 .text .description {
	color: #000;
}
@media (min-width: 1699px) and (max-width: 1920px) {
	.contact {
		margin: -22em 0 0;
	}
}
@media (min-width: 1500px) and (max-width: 1700px) {
	.contact .text .title {
		font-size: 2em;
	}
	.contact .text .description {
		font-size: 1.2em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 6em 6em 6em 8em;
	}
	.contact img {
		width: 65px;
		height: 65px;
	}
	.contact {
		margin: 0;
	}
}
@media (min-width: 1350px) and (max-width: 1499px) {
	.contact {
		margin: -17em 0 0;
	}
}
@media (min-width: 1280px) and (max-width: 1349px) {
	.contact {
		margin: -10em 0 0;
	}
}
@media (min-width: 1280px) and (max-width: 1499px) {
	.contact .text .title {
		font-size: 1.8em;
	}
	.contact .text .description {
		font-size: 1.1em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 6em;
	}
	.contact img {
		width: 60px;
		height: 60px;
	}
}
@media (min-width: 992px) and (max-width: 1279px) {
	.contact {
		margin: -12.4em 0 0;
	}
	.contact .text .title {
		font-size: 1.4em;
	}
	.contact .text .description {
		font-size: 1em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 4.4em;
	}
	.contact img {
		width: 60px;
		height: 60px;
	}
}
@media (max-width: 992px) {
	.contact {
		margin: 0;
	}
	.contact .contact-1,
	.contact .contact-2 {
		width: 100% !important;
	}
	.contact img {
		width: 70px;
		height: 70px;
	}
	.contact {
		display: block;
	}
}
@media (min-width: 660px) and (max-width: 991px) {
	.contact {
		margin: 0;
	}
	.contact .text .title {
		font-size: 1.8em;
	}
	.contact .text .description {
		font-size: 1.2em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 6em;
	}
	.contact img {
		width: 60px;
		height: 60px;
	}
}
@media (min-width: 400px) and (max-width: 659px) {
	.contact {
		margin: 0;
	}
	.contact .text .title {
		font-size: 1.6em;
	}
	.contact .text .description {
		font-size: 1.1em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 4em;
	}
	.contact img {
		width: 60px;
		height: 60px;
	}
}
@media (max-width: 400px) {
	.contact {
		margin: 0;
	}
	.contact .text .title {
		font-size: 1.4em;
	}
	.contact .text .description {
		font-size: 1em;
	}
	.contact .contact-1, .contact .contact-2 {
		padding: 3em;
	}
	.contact img {
		width: 55px;
		height: 55px;
	}
}
@media (max-width: 992px) {
	footer {
		height: fit-content !important;
	}
}
footer {
    background-color: #000 !important;
    color: white;
    padding: 20px;
	height: fit-content;
    overflow: hidden;
	position: relative;
	height: calc(100% - 50px);
}
.footer-copyrights {
	width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	padding: 0 10em;
	overflow: hidden;
}
.footer-copyrights .copyright-text {
	font-family: 'OverusedGroteskMedium';
	font-size: 1.15em;
	color: #fff;
}
.footer-social {
	width: 30%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 4em auto 0em;
}
.footer-logo {
	margin-bottom: 28px !important;
    width: 75% !important;
    max-width: 294px !important;
    height: auto !important;
}
.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-right: 30em;
}
.footer-sections {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-services,
.footer-company,
.footer-contact {
    flex: 1;
    min-width: 150px;
    margin: 10px 0;
}
.footer-services .footer-services-text,
.footer-company .footer-company-text,
.footer-contact .footer-contact-text {
    margin-bottom: 1.2em;
}
.footer-services ul,
.footer-company ul,
.footer-contact ul {
    list-style-type: none;
}
.footer-services ul li,
.footer-company ul li,
.footer-contact ul li {
    margin-bottom: 8px;
}
.footer-services ul li a,
.footer-company ul li a,
.footer-contact ul li a {
    text-decoration: none;
    font-size: 1.2em;
	font-family: 'OverusedGrotesk';
	color: rgba(255,255,255,0.5);
	line-height: 2em;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
	display: flex;
    justify-content: space-around;
    align-content: center;
    align-items: center;
	background: none !important;
	margin: 3em 0 7em;
	max-width: 1600px;
	z-index: 3;
    position: relative;
}
.footer-wrapper {
	max-width: 1600px;
	margin: auto;
}
.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.footer-social .follow-text {
	font-family: 'OverusedGroteskMedium';
}
.footer-social .follow-text,
.footer-logo .footer-logo-text {
    margin-right: 10px;
	font-size: 1em;
	color: rgba(255,255,255,1);
	font-family: 'OverusedGrotesk';
	line-height: 1.6em;
}
.footer-services .footer-services-text,
.footer-company .footer-company-text,
.footer-contact .footer-contact-text {
    margin-right: 10px;
	font-size: 1em;
	color: #fff;
}
.footer-services .footer-services-text,
.footer-company .footer-company-text,
.footer-contact .footer-contact-text {
	font-family: 'OverusedGroteskBold';
	font-size: 1.3em;
	line-height: 3em;
}
.footer-social ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}
.footer-social ul li {
    margin-left: 10px;
}
.footer-social ul li a img {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-sections {
        flex-direction: column;
        align-items: center;
    }
    .footer-services, .footer-company, .footer-contact {
        flex: 100%;
        text-align: center;
    }
    .footer-bottom {
        padding-top: 10px;
    }
}
@media (min-width: 1500px) and (max-width: 1700px) {
	.footer-container,
	.footer-wrapper {
		max-width: 1400px;
	}
	.footer-logo {
		margin-right: 26em;
	}
	.footer-copyrights {
		padding: 0px 8em;
	}
}
@media (min-width: 1280px) and (max-width: 1499px) {
	.footer-container,
	.footer-wrapper {
		max-width: 1180px;
	}
	.footer-logo {
		margin-right: 14em;
	}
	.footer-copyrights {
		padding: 0px 4em;
	}
}
@media (min-width: 992px) and (max-width: 1279px) {
	.footer-container,
	.footer-wrapper {
		max-width: 900px;
	}
	.footer-logo {
		margin-right: 8em;
	}
	.footer-copyrights {
		padding: 0px 4em;
	}
	.footer-bottom {
		display: block;
		margin: 3em 0 .5em;
	}
	.footer-social,
	.footer-copyrights	{
		width: 100%;
	}
	.footer-social {
		margin-bottom: 4em;
	}
}
@media (max-width: 991px) {
	.footer-container,
	.footer-wrapper {
		max-width: 100%;
		padding: 0 4%;
	}
	.footer-logo {
		margin-right: 0;
		width: 100%;
	}
	.footer-bottom {
		display: block;
		margin: 3em 0 .5em;
	}
	.footer-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
	}
	.footer-container,
	.footer-sections {
		display: block;
	}
	.footer-services
	.footer-company,
	.footer-contact,
	.footer-social,
	.footer-copyrights	{
		width: 100%;
	}
	.footer-social {
		margin-bottom: 3em;
	}
	.footer-copyrights {
		padding: 0px 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
	}
	.footer-services ul li a,
	.footer-company ul li a,
	.footer-contact ul li a {
		font-size: 1.25em;
	}
	.footer-services ul,
	.footer-company ul,
	.footer-contact ul {
		margin: 15px;
	}
	.footer-social .follow-text,
	.footer-services .footer-services-text,
	.footer-company .footer-company-text,
	.footer-contact .footer-contact-text {
		font-size: 1.3em;
        margin: 1em 0;
	}
	.footer-logo .footer-logo-text {
		font-size: 1em;
	}
}
.silverspoon,
.silverspoon:hover,
.silverspoon:focus,
.silverspoon:active {
	color: #D7FF27;
}
.menu-item {
    position: relative;
}
.menu-item a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    display: block;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    margin: 0;
    z-index: 1000;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	padding: 20px 0;
	width: 280px;
}
.submenu li {
    margin: 0;
}
.menu-item:hover .submenu {
    display: block;
}
.submenu li a {
    position: relative;
    padding-left: 20px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.7s ease, transform 0.5s ease;
}
.submenu li a:hover {
    color: #CE252A;
	transform: translateX(14px);
}
.submenu li a::before {
    content: "—";
    position: absolute;
    left: 0;
    color: transparent;
    transition: color 0.7s ease, transform 0.5s ease;
}
.submenu li a:hover::before {
    color: #CE252A;
}
@media (max-width: 768px) {
	.menu-item.has-submenu > a::after {
		content: '\25BC';
		position: absolute;
		right: 75px;
		top: 7px;
		font-size: 0.8em;
		transition: transform 0.3s ease;
	}
    .submenu {
        display: none;
        position: relative;
        padding-left: 20px;
		background: none;
		border: none;
    }
    .menu-item.has-submenu > a {
        cursor: pointer;
		border: none;
    }
    .menu-item.has-submenu.open .submenu {
        display: block;
    }
    .menu-item.has-submenu.open > a::after {
        transform: rotate(180deg);
    }
	.sidebar ul li {
		margin-bottom: 0;
		border: none;
	}
	.sidebar ul li a {
		padding: 5px 7px;
	}
}
