

@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: 'OverusedGroteskLight';
    src: url('fonts/OverusedGrotesk/OverusedGroteskLight.ttf') format('truetype');
    font-weight: 300;
    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: 15px 0 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: flex-start;
	transition: right 0.3s ease;
	padding: 60px 30px 30px;
	z-index: 3;
}
.sidebar.open {
	right: 0;
	background-color: #1a1a1a;
	border-left: 1px solid #333;
}
.sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
.sidebar ul li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar ul li:last-child {
	border-bottom: none;
}
.sidebar ul li a {
	font-size: 16px;
	color: white;
	text-decoration: none;
}
.sidebar .menu-item > div {
	color: white;
	font-size: 16px;
	font-family: "HelveticaNeue";
	cursor: pointer;
	padding: 4px 0;
}
.sidebar .get-started {
	margin-top: 24px;
	padding: 0.8em 1.5em;
	display: inline-block;
}
.close-sidebar {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 28px;
	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;
}
@media (min-width: 992px) and (max-width: 1199px) {
	.nav-menu {
		gap: 2em;
	}
	.get-started {
		padding: .75em 1.5em;
	}
}
@media (max-width: 992px) {
	.logo svg {
		width: 60%;
	}
	.header,
	.content {
		padding: 15px 1em !important;
	}
	.content {
		padding: 15px 0 !important;
	}
}
.top-columns {
	width: 100dvw;
	height: 100dvh;
	background-size: cover;
	background-position: center;
}
.top-columns .top-text-wrapper {
	width: 100%;
	height: auto;
	padding: 13% 16% 5%;
	display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}
.top-columns .head-title {
    font-family: 'OverusedGrotesk';
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1em;
}
.top-columns .head-subtitle {
	font-family: 'OverusedGrotesk';
    font-size: 1.25em;
    margin: 1.8em 0;
    color: #fff;
	line-height: 1em;
}
.top-columns .button,
.service-box-btn-wrapper .button,
.company-info .button,
.cta-buttons .btn {
	font-family: "MontserratExtraBold";
	font-size: 1.05em;
	color: #fff;
	padding: .8em 2.6em;
	border-radius: 2px !important;
	font-weight: 900;
	cursor: pointer;
	z-index: 2;
	background-color: #CE252A;
	text-decoration: none;
	display: inline-block;
}
.top-columns .head-text {
	font-family: 'OverusedGrotesk';
    font-size: 1.25em;
    margin: 0 0 2em;
    color: #fff;
}
@media (min-width: 600px) and (max-width: 991px) {
	.company-info .company-info-1 .title {
		font-size: 2.6em !important;
	}
	.white-linear-bg {
		padding: 2em 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;
	}
	.services-container {
		padding: 0 10% 5% !important;
	}
    .service-box {
        min-width: 300px !important;
    }
}
@media (max-width: 399px) {
	.services-container {
		padding: 0 0 5% !important;
	}
	.services-section {
		padding: 10px 0 0;
	}
}
@media (min-width: 300px) and (max-width: 399px) {
	.white-linear-bg {
		padding: 2em 0 4em !important;
	}
	.company-info .company-info-1 .title {
		font-size: 2.2em !important;
	}
	.white-linear-bg {
		padding: 2em 0 2em !important;
	}
	#ellipse-middle-left {
		margin: -47% 0 !important;
	}
	.services-section .services-section-title {
		font-size: 1.4em !important;
	}
    .service-box .service-box-title {
        font-size: 1.25em;
    }
	.top-columns {
		height: 107dvh;
	}
}
@media (max-width: 299px) {
	.company-info .company-info-1 .title {
		font-size: 2em !important;
	}
	.white-linear-bg {
		padding: 2em 0 1em !important;
	}
	#ellipse-middle-left {
		margin: -47% 0 !important;
	}
	.services-section .services-section-title {
		font-size: 1.4em !important;
	}
    .service-box .service-box-title {
        font-size: 1.25em;
    }
}
@media (min-width: 550px) and (max-width: 650px) {
	.services-container {
		padding: 0 10% 5% !important;
	}
	.testimonials {
		padding: 8% 12% !important;
	}
}
@media (min-width: 400px) and (max-width: 549px) {
	.services-container {
		padding: 0 5% 5% !important;
	}
	.testimonials {
		padding: 8% 10% !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: 1em;
		padding: .8em 1.8em;
	}
	.service-box {
		min-width: 300px !important;
	}
}
@media (max-width: 399px) {
	.services-container {
		padding: 0 2% 5% !important;
	}
	.testimonials {
		padding: 8% 10% !important;
	}
	.service-box {
		min-width: 250px !important;
	}
	.testimonials .testimonials-1 .testimonials-text-box .testimonials-btn {
		font-size: .8em;
		padding: .8em 1.8em;
	}
}
.services-section {
	text-align: center;
	color: white;
	padding: 46px 20px;
	position: relative;
	z-index: 1;
}
.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: 2.4em auto 0;
}
.testimonials {
    gap: 10% !important;
    padding: 8% 10% !important;
	height: max-content;
    background-size: cover;
    background-repeat: no-repeat;
}
.service-box {
	background: radial-gradient(circle at center, rgb(255 255 255) 22%, #b3b3b3 100%);
	border: 1px solid #707070;
	padding: 20px;
	width: 30%;
	min-width: 400px;
	text-align: center;
	transition: all 0.3s ease;
	padding: 2em 2em 3em;
	margin: auto;
	min-height: 37em;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 780px) {
	.service-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 {
		padding: 1em 1em 1.2em;
	}
}
.service-box img {
	margin: 0 auto;
    width: 240px;
    height: 240px;
    object-fit: contain;
}
.service-box .service-box-title {
	font-size: 1.8em;
	color: #020202;
	display: block;
	font-family: 'OverusedGrotesk';
	margin: 0 0 1em;
}
.service-box .service-box-text {
	font-size: 1.2em;
	color: #020202;
	font-family: 'OverusedGrotesk';
}
.service-box a {
	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 (max-width: 768px) {
	.service-box {
		width: 100%;
	}
	.service-box .service-box-text,
	.service-box a {
		font-size: 1.1em;
	}
	.service-box .service-box-title {
		font-size: 1.5em;
	}
}
.white-linear-bg {
	background: linear-gradient(to right, #FFF7F7 55%, #FFFFFF);
	padding: 2em 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;
	}
}
@media (min-width: 1400px) and (max-width: 1599px) {
	.white-linear-bg {
		padding: 0 0 2em !important;
		margin: 0 0 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;
	}
}
.company-info {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5%;
    padding: 0 12%;
    margin: 2em 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.second .info-list li {
	background-image: none !important;
}
.company-info.second .description {
	margin: .6em 0;
}
.company-info.second .company-info-1 > last {
	margin: 1.2em 0 !important;
	text-decoration: underline !important;
}
.underlined {
	text-decoration: underline !important;
}
.company-info.second .company-info-1 {
    display: flex !important;
    flex-direction: column !important;
    align-content: flex-end !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}
.company-info.second .company-info-2 {
	display: flex !important;
    align-content: flex-start !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}
.company-info.second .company-info-1 {
	text-align: end;
}
.company-info.second .company-info-2 img {
    width: 150%;
    margin: -18em 0 0 -10em;
    max-width: 150%;
}
.company-info.second {
	margin: 15em 10em;
	padding: 0 5%;
}
.company-info-1 {
    width: 55%;
    padding: 0 5em 0 0;
}
.company-info-2 {
    width: 40%;
    align-content: center;
    align-items: center;
	margin: 0 0 2em;
}
.company-info-2 img {
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 70%;
}
.info-list {
    list-style: none;
	margin: 0 0 2em;
}
.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: 'OverusedGrotesk';
    font-size: 1.15em;
	color: #000;
}
.info-list ul {
    list-style: none;
}
@media (max-width: 992px) {
	.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;
        z-index: 0;
        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.third {
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.company-info .company-info-1.third .description {
	margin: 1em 0;
}
.company-info .company-info-1.third .after_url {
	margin: 2em 0 1em;
}
.company-info .company-info-1.third .last {
	margin: 1em 0 2em;
}
.company-info .company-info-1 .description.first,
.company-info .company-info-1 .description.second {
	margin: 0 0 2em;
}
.company-info .company-info-1 .title {
    font-family: 'OverusedGrotesk';
    font-size: 3.4em;
	color: #CE252A;
}
@media (max-width: 1700px) {
	.top-columns .top-text-wrapper {
		padding: 15% 17% 5%;
	}
}
@media (min-width: 1500px) and (max-width: 1599px) {
	.top-columns .top-text-wrapper {
		padding: 16% 17% 5%;
	}
	.top-columns .head-title {
		font-size: 3em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.15em;
	}
	.top-columns .head-subtitle {
		margin: 1.7em 0;
	}
    .testimonials {
		padding: 10% !important;
	}
}
@media (min-width: 1600px) and (max-width: 1780px) {
    .testimonials {
		padding: 16% 10% 13.6% !important;
	}
}
@media (min-width: 1300px) and (max-width: 1500px) {
	.top-columns .top-text-wrapper {
		padding: 15% 17% 5%;
	}
	.top-columns .head-title {
		font-size: 3em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.15em;
	}
	.top-columns .head-subtitle {
		margin: 1.6em 0;
	}
	.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: 1085px) and (max-width: 1299px) {
	.top-columns .top-text-wrapper {
		padding: 16% 13% 5% 14%;
	}
	.top-columns .head-title {
		font-size: 2.6em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.15em;
	}
	.top-columns .head-subtitle {
	    margin: 1.5em 0;
	}
}
@media (min-width: 992px) and (max-width: 1084px) {
	.top-columns .top-text-wrapper {
		padding: 16% 16% 5% 5%;
	}
	.top-columns .head-title {
		font-size: 2.6em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.15em;
	}
	.top-columns .head-subtitle {
	    margin: 1.4em 0;
	}
}
@media (min-width: 993px) and (max-width: 1500px) {
	.company-info .company-info-1 .title,
	.testimonials .testimonials-1 .title {
		font-size: 2.4em;
	}
	.company-info-1 {
		width: 60% !important;
	}
	.company-info-2 {
		width: 30% !important;
	}
}
.testimonials {
	display: flex;
	gap: 10px;
}
.testimonials-1 {
	width: 100%;
	height: fit-content;
}
.testimonials-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
	padding: 10% 0;
}
.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;
    box-sizing: border-box;
    border-radius: 50px;
    overflow: hidden;
}
@media (max-width: 1400px) {
    .testimonials-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testimonials-2 {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 600px) and (max-width: 992px) {
	.testimonials-1 {
		width: 100% !important;
	}
}
@media (max-width: 599px) {
	.service-box-btn-wrapper {
		margin: 1em 0 2em;
	}
	.testimonials-1 {
		width: 100% !important;
	}
}
.testimonials .testimonials-1 .testimonials-text-box {
    display: flex;
	align-content: stretch;
    align-items: flex-start;
    justify-content: space-between;
	width: 100%;
}
.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;
}
#ellipse-top-left {
	position: fixed;
	top: -55%;
	left: -30%;
	width: 80%;
	z-index: 1;
	pointer-events: none;
}
#ellipse-middle-left {
	position: fixed;
	top: 10%;
	left: -30%;
	width: 80%;
	z-index: 1;
	pointer-events: none;
}
#ellipse-bottom-right {
    position: relative;
	transform: translate(117%, -19%);
    z-index: 1;
    margin: -26% 0;
}
#footer-top-ellipse {
	position: relative;
    transform: translate(117%, 20%);
    z-index: 1;
    margin: -26% 0;
    opacity: .8;
}
#footer-bottom-ellipse {
    position: relative;
    transform: translate(-46%, 4%);
    z-index: 1;
    margin: -100% 0;
    opacity: .5;
}
@media (min-width: 1700px) and (max-width: 1919px) {
	#footer-top-ellipse {
		transform: translate(100%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1600px) and (max-width: 1699px) {
	#footer-top-ellipse {
		transform: translate(94%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1500px) and (max-width: 1599px) {
	#footer-top-ellipse {
		transform: translate(85%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1400px) and (max-width: 1499px) {
	#footer-top-ellipse {
		transform: translate(79%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1300px) and (max-width: 1399px) {
	#footer-top-ellipse {
		transform: translate(66%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 1280px) and (max-width: 1299px) {
	#footer-top-ellipse {
		transform: translate(56%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 992px) and (max-width: 1279px) {
	#footer-top-ellipse {
		transform: translate(49%, 30%);
		margin: -100% 0;
		opacity: .8;
	}
}
@media (min-width: 500px) and (max-width: 991px) {
	#footer-top-ellipse {
		transform: translate(35%, 30%);
		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 .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 {
		padding: 8% 10% !important;
	}
}
@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;
	}
	.services-container, .testimonials {
		padding: 4% 16% 5% !important;
	}
}
@media (min-width: 1200px) and (max-width: 1279px) {
	.services-container {
		padding: 0 12% 5% !important;
	}
    .service-box {
        min-width: 400px !important;
    }
}
@media (min-width: 1100px) and (max-width: 1199px) {
	.services-container {
		padding: 0 7% 5% !important;
	}
    .service-box {
        min-width: 400px !important;
    }
}
@media (min-width: 1080px) and (max-width: 1099px) {
	.services-container {
		padding: 0 3% 5% !important;
	}
    .service-box {
        min-width: 400px !important;
    }
}
@media (min-width: 1024px) and (max-width: 1079px) {
	.services-container {
		padding: 0 5% 5% !important;
	}
    .service-box {
        min-width: 360px !important;
    }
}
@media (max-width: 1100px) {
    .service-box {
		min-height: 640px !important;
    }
}
@media (min-width: 992px) and (max-width: 1023px) {
	.services-container {
		padding: 0 3% 5% !important;
	}
    .service-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 {
		padding: 8% 12% !important;
	}
}
@media (min-width: 900px) and (max-width: 991px) {
	.services-container {
		padding: 0 3% 5% !important;
	}
    .service-box {
        min-width: 360px !important;
    }
}
@media (min-width: 600px) and (max-width: 899px) {
	.services-container {
		padding: 0 12% 5% !important;
	}
    .service-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 {
		padding: 8% 10% !important;
	}
}
@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 {
		padding: 8% 16% !important;
	}
	.services-container {
		padding: 0 16%  5% !important;
	}
}
@media (max-width: 350px) {
	.services-section {
		padding: 10px 0 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 {
		padding: 8% 10% !important;
	}
	.services-container {
		padding: 0 3% 5% !important;
	}
}
@media (min-width: 1590px) and (max-width: 1810px) {
	.services-container {
		padding: 0% 10% 5% !important;
	}
}
@media (min-width: 1350px) and (max-width: 1369px) {
	.services-container {
		padding: 0% 17% 5% !important;
	}
}
@media (min-width: 1370px) and (max-width: 1589px) {
	.services-container {
		padding: 0% 19% 5% !important;
	}
}
.content,
.white-linear-bg,
.testimonials {
	max-width: 1920px;
}
@media (min-width: 1920px) {
	#ellipse-middle-left {
		transform: translate(-14%, 0);
		width: 40%;
	}
}
@media (max-width: 992px) {
	footer {
		height: fit-content !important;
	}
}
footer {
    background-color: #000 !important;
    color: white;
    padding: 20px;
	height: fit-content;
    overflow: hidden;
	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: #fff;
	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,
.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;
    }
}
.footer-services, .footer-company, .footer-contact {
	z-index: 2;
}
@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 (min-width: 900px) and (max-width: 991px) {
	.top-columns .top-text-wrapper {
		padding: 22% 12% 5% 8%;
	}
	.top-columns .head-title {
		font-size: 2.2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
	.top-columns .head-subtitle {
	    margin: 1.3em 0;
	}
}
@media (min-width: 800px) and (max-width: 899px) {
	.top-columns .top-text-wrapper {
		padding: 24% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2.2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: 1.2em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (min-width: 700px) and (max-width: 799px) {
	.top-columns .top-text-wrapper {
		padding: 27% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2.2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: 1.1em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (min-width: 600px) and (max-width: 699px) {
	.top-columns .top-text-wrapper {
		padding: 34% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2.2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: 1em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (min-width: 500px) and (max-width: 599px) {
	.top-columns .top-text-wrapper {
		padding: 38% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2.1em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: .9em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (min-width: 400px) and (max-width: 499px) {
	.top-columns .top-text-wrapper {
		padding: 40% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: .9em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (max-width: 399px) {
	.top-columns .top-text-wrapper {
		padding: 40% 13% 5% 13%;
	}
	.top-columns .head-title {
		font-size: 2em;
	}
	.top-columns .head-subtitle,
	.top-columns .head-text {
		font-size: 1.1em;
	}
	.top-columns .head-subtitle {
	    margin: .9em 0;
	}
	.top-columns .button,
	.service-box-btn-wrapper .button,
	.company-info .button,
	.cta-buttons .btn {
		font-size: .9em;
	}
}
@media (max-width: 991px) {
	footer {
		margin: 3em 0 0;
	}
	.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;
}
.service-box-btn-wrapper {
	width: 100%;
	margin: 0 0 2em;
	padding: 0 10px;
}
@media (min-width: 992px) and (max-width: 1399px) {
	.company-info {
		padding: 4em 12% 0;
	}
	.company-info.second {
		width: 100%;
		margin: 15em 0 10em;
		padding: 0em 9% 0 !important;
	}
}
@media (max-width: 991px) {
	.company-info {
		padding: 0 12%;
	}
	.company-info.second {
		width: 100%;
		margin: 12em 0 10em;
		padding: 0em 9% 0 !important;
	}
	.company-info.second .company-info-1 {
		margin-top: 7em !important;
	}
}
.faq-container .cell-1 {
	width: fit-content;
}
.faq-container {
    padding: 50px 20px;
    background-color: #fff;
    color: #000;
    text-align: left;
    max-width: 1600px;
    margin: 0 auto;
	display: flex;
	align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	gap: 20px;
}
.faq-title {
    color: #CE252A;
    font-size: 2.2rem;
    margin-bottom: 20px;
	font-family: 'OverusedGroteskLight';
	margin-top: -10px;
}
.faq {
    margin-bottom: 30px;
}
.faq h3 {
    font-size: 2.8rem;
    margin-bottom: 10px;
	font-family: 'OverusedGroteskSemiBold';
}
.faq p {
    font-size: 1.2rem;
    color: #555;
	font-family: 'OverusedGrotesk';
}
.cta-container {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
	padding: 5% 10%;
	min-height: 500px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
	font-family: 'OverusedGroteskSemiBold';
	color: #fff;
}
.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
	font-family: 'OverusedGrotesk';
}
.cta-buttons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.cta-link,
.cta-link:hover,
.cta-link:active,
.cta-link:focus {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
	font-size: 1.2rem;
	font-family: 'OverusedGrotesk';
}
@media (max-width: 1024px) {
    .faq-container {
        padding: 40px 15px;
    }
    .faq-title {
        font-size: 2rem;
		margin-top: 0;
    }
    .faq h3 {
        font-size: 1.6rem;
    }
    .cta-container {
        padding: 70px 15px;
    }
    .cta-container h2 {
        font-size: 1.8rem;
    }
    .btn {
        min-width: 150px;
        padding: 8px 15px;
    }
}
@media (max-width: 768px) {
    .faq-container,
	.cta-container {
        padding: 60px 10px 0;
		flex-direction: column;
    }
	.cta-container {
		margin-bottom: -10em;
	}
    .faq h3 {
        font-size: 1.4rem;
    }
    .faq p {
        font-size: 1.15rem;
    }
    .cta-container h2 {
        font-size: 1.4rem;
    }
    .cta-container p {
        font-size: 1.15rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
		max-width: 300px;
		margin: auto;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
.btn {
	background: #ce242b !important;
}
.faq-wrapper {
	display: flex;
	flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	background-color: #fff;
	width: 100%;
	padding: 5% 10%;
}
@media (max-width: 1200px) {
	.testimonials .testimonials-1 .title {
		font-size: 2.4em !important;
	}
}
@media (max-width: 768px) {
	.testimonials .testimonials-1 .title {
		font-size: 2em !important;
		width: 100% !important;
        text-align: center !important;
	}
	.testimonials-1 .testimonials-text-box {
		flex-direction: column;
		align-content: center !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100%;
		gap: 20px;
	}
}
@media (max-width: 400px) {
	.testimonials .testimonials-1 .title {
		font-size: 1.6em !important;
	}
}
@media (max-width: 1850px) {
	.company-info.second .company-info-2 img {
		width: 130% !important;
		margin: -16em 0 0 -12em !important;
		max-width: 130% !important;
	}
}
@media (max-width: 1700px) {
	.company-info.second .company-info-2 img {
		width: 140% !important;
		margin: -17em 0 0 -10em !important;
		max-width: 140% !important;
	}
}
@media (max-width: 1500px) {
	.company-info.second .company-info-2 img {
		width: 190% !important;
        margin: -14em 0 0 -12em !important;
        max-width: 190% !important;
	}
}
@media (max-width: 1400px) {
	.company-info.second .company-info-2 img {
		width: 180% !important;
        margin: -18em 0 0 -12em !important;
        max-width: 180% !important;
	}
}
@media (min-width: 993px) and (max-width: 1300px) {
	.company-info.second .company-info-2 img {
        width: 160% !important;
        margin: -14em 0 0 -10em !important;
        max-width: 160% !important;
	}
}
@media (max-width: 991px) {
	.company-info.second .company-info-2 img {
		margin: -47em 0 0 -5em !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}
@media (max-width: 500px) {
	.company-info.second .company-info-2 img {
        margin: -49em 0 0 -4em !important;
        width: 100% !important;
        max-width: 100% !important;
	}
}
@media (max-width: 400px) {
	.company-info.second .company-info-2 img {
        margin: -51em 0 0 -3em !important;
        width: 100% !important;
        max-width: 100% !important;
	}
}@media (max-width: 300px) {
	.company-info.second .company-info-2 img {
        margin: -57em 0 0 -2em !important;
        width: 100% !important;
        max-width: 100% !important;
	}
}
.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.3s ease, transform 0.3s ease; 
}
.submenu li a:hover {
    color: #CE252A;
	transform: translateX(14px);
}
.submenu li a::before {
    content: "—";
    position: absolute;
    left: 0;
    color: transparent;
    transition: color 0.3s ease, transform 0.3s 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 {
		padding: 12px 0;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.sidebar > ul > li:last-child {
		border-bottom: none;
	}
	.sidebar .submenu li {
		padding: 6px 0;
		border-bottom: none;
	}
	.sidebar ul li a {
		padding: 4px 0;
	}
}
