@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;display=swap");

:root {
	--pColor: #585C63;
	--sColor: #032973;
	--blue: #0161d2;
	--navy-blue: #1c1853;
	--light-nb: #e1e6fe;
	--grey-bg: #f3f3f3;
	--paraGrey: #898989;
	--white: #ffffff;
	--black: #000000;
}

body {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	overflow-x: hidden;
}

p {
	font-size: 16px;
	margin-bottom: 0px;
	color: var(--paraGrey);
	line-height: 1.5;
}

.p-0 {
	padding: 0px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pl-0 {
	padding-left: 0px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pt-120 {
	padding-top: 120px !important;
}

.m-0 {
	margin: 0px;
}

.mt-5 {
	margin-top: -5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mtn-20 {
	margin-top: -20px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-100 {
	margin-top: 100px;
}

.w-50 {
	width: 25% !important;
}

.p-rel {
	position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
button,
li,
label,
::placeholder {
	font-family: "Outfit", sans-serif;
	font-weight: 300;
	text-decoration: none;
}

.section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.heading {
	font-size: 32px;
	margin: 20px 0px;
	font-weight: bold;
}

.sub-heading {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--grey);
}

.common-btn {
	background-color: var(--pColor);
	color: var(--white);
	padding: 10px 0px 10px 20px;
	text-decoration: none;
}

.common-btn .btn-arrow {
	background-color: var(--sColor);
	padding: 10px;
	margin-left: 20px;
	color: var(--white);
}

.contact-info-container {
	padding: 10px 35px;
	background-color: var(--white);
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.contact-info {
	display: flex;
	align-items: center;
	column-gap: 5px;
}

.contact-info-wrapper {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.contact-icon img {
	height: 30px;
	width: auto;
}

.social-media-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.sm-icon img {
	height: 40px;
	width: auto;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 50px;
	position: relative;
	top: 0;
	width: 100%;
	z-index: 9;
	transition: all 0.3s ease;
}

.navbar.sticky {
	position: fixed;
	top: 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background-color: var(--white);
}

.logo {
	display: flex;
	align-items: center;
}

.logo a img {
	width: auto;
	height: 30px;
	margin-right: 10px;
}

.logo span {
	font-weight: bold;
	font-size: 16px;
	color: #333;
}

.nav-container {
	display: flex;
	align-items: center;
	flex: 1;
}

.nav-links {
	display: flex;
	justify-content: center;
	list-style: none;
	flex: 1;
	margin-bottom: 0px;
}

.nav-links li {
	margin: 0 15px;
}

.nav-links a {
	text-decoration: none;
	color: var(--pColor);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

.nav-links .has-submenu {
	position: relative;
}

.nav-links .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	list-style: none;
	padding: 20px 0 0 0;
	margin: 0;
	min-width: 270px;
	z-index: 10;
}

.nav-links .submenu li {
	background: var(--grey-bg);
	padding: 5px 15px;
	margin: 0;
}

.nav-links .submenu li a {
	color: var(--pColor);
	display: block;
	text-decoration: none;
	color: var(--pColor);
	text-transform: uppercase;
}

.nav-links .submenu li:hover {
	background-color: var(--sColor);
}

.nav-links .submenu li:hover a {
	color: var(--white);
}

.nav-links .has-submenu:hover .submenu {
	display: block;
}

.top-banner-image img {
	height: 80vh;
	width: auto;
	filter: grayscale(1);
	margin-top: -15%;
}

.top-banner {
	background-image: url("../media/images/new-home-banner.png");
	height: 90vh;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.top-banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.top-banner-text h1 {
	color: var(--sColor);
	font-weight: 300;
	line-height: 1.3;
	font-size: 48px;
}

.top-banner-text p {
	color: var(--pColor);
	margin-bottom: 50px;
}

.cta-section {
	background-color: var(--pColor);
	padding: 50px 0;
}

.cta-section h2 {
	color: var(--white);
	font-size: 40px;
	font-weight: 300;
}

.cta-section p {
	color: var(--light-nb);
	font-size: 24px;
	font-weight: 300;
}

.cta-btn-col {
	text-align: center;
	position: relative;
}

.upword-arrow {
	height: 130px;
	width: 130px;
	border-radius: 50%;
	background-color: var(--sColor);
	padding: 10px;
	position: absolute;
	left: 60%;
	bottom: 50%;
	transform: translate(-50%, -40%);
}

.arrow-wrapper {
	border: 1px solid var(--white);
	border-radius: 50%;
	padding: 20px;
	height: 110px;
	width: 110px;
}

.quote-btn {
	background-color: var(--white);
	color: var(--pColor);
}

.comapny-vision {
	background-color: var(--grey-bg);
	padding-top: 50px;
}

.card-wrapper {
	background-color: var(--white);
	padding: 20px;
	height: 450px;
}

.icon-count-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.count-number p {
	font-size: 48px;
	font-weight: 500;
	color: var(--sColor);
	letter-spacing: 5px;
}

.card-content {
	padding: 20px;
}

.card-head h3 {
	color: var(--sColor);
}

.card-para p {
	color: var(--paraGrey);
}

.company-name-wrapper {
	background-color: var(--grey-bg);
	text-align: center;
}

.company-name img {
	height: auto;
	width: 100%;
}

.about-us-wrapper {
	background-color: var(--grey-bg);
}

.abt-img-wrapper{
    overflow: hidden;
}

.abt-img-wrapper img {
	height: 70vh;
	width: 100%;
	object-fit: cover;
}

.abt-content {
	padding: 80px 40px;
}

.abt-icon {
	padding-bottom: 40px;
}

.abt-heading h2 {
	font-size: 48px;
}

.abt-icon img {
	height: 100px;
	width: auto;
	filter: grayscale(1);
}

.abt-para p {
	text-align: justify;
	padding-bottom: 30px;
}

.pp-p-benefits {
	background-color: #fafafa;
}

.product-benefits-head h2 {
	color: var(--sColor);
	font-size: 45px;
	padding-bottom: 30px;
}

.sub-head {
	padding-bottom: 50px;
	color: var(--sColor);
}

.product-benefits-wrapper {
	padding: 100px 0px;
}

.pb-card-wrapper {
	padding: 20px;
	position: relative;
	overflow: hidden;
	transition: background-color 0.3s ease;
}

.pb-icon-wrapper img {
	height: 80px;
	width: auto;
	margin-bottom: 50px;
	filter: grayscale(1);
}

.pb-card-content h3 {
	color: var(--sColor);
	font-size: 28px;
	padding-bottom: 20px;
}

.lni-plus {
	padding-top: 40px;
}

.lni-plus::before {
	color: var(--paraGrey);
	font-size: 26px;
}

.pb-card-d {
	border-right: unset;
}

.right-border::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0.5px;
	height: 80%;
	background-color: var(--paraGrey);
}

.pb-card-content {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.pb-plus-sign {
	display: none;
}

.polystyrene-type {
	padding: 100px 0px;
}

.polystyrene-type-img img {
	height: auto;
	width: 100%;
}

.pti-a img {
	height: 370px;
	object-fit: cover;
}

.content-wrapper {
	position: relative;
	background: var(--grey-bg);
	margin-top: -15%;
}

.content {
	padding: 45px;
	position: relative;
}

.content h2 {
	font-size: 45px;
	color: var(--sColor);
	padding-bottom: 30px;
}

.content p {
	color: var(--paraGrey);
	padding-bottom: 20px;
}

.content::after {
	content: "";
	display: block;
	height: 5px;
	width: 100%;
	background: linear-gradient(to right, var(--sColor), transparent);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: unset;
}

.sustainability-focus {
	padding: 100px 0px;
	margin-top: 300px;
	background-color: var(--pColor);
}

.sustain-icon img {
	height: 100px;
	width: auto;
}

.sustain-head {
	font-size: 45px;
	color: var(--white);
	padding-top: 40px;
}

.sustain-para {
	font-size: 22px;
	color: var(--paraGrey);
	padding-top: 30px;
	padding-bottom: 40px;
}

.sustainability-focus-img img {
	height: auto;
	width: 100%;
}

.contact-form-section {
	background-color: var(--grey-bg);
	padding: 100px 0px;
}

.contact-form-head h2 {
	font-size: 90px;
	color: var(--sColor);
	padding: 100px 20px 0 20px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 3px;
}

.form-container {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 100px 50px;
	background-color: var(--white);
	z-index: 5;
	position: absolute;
}

.form-container h2 {
	font-size: 45px;
	color: var(--sColor);
}

.contact-form {
	padding: 5% 10%;
}

.contact-form .form-group {
	margin-bottom: 20px;
	text-align: left;
}

.contact-form label {
	display: block;
	font-size: 14px;
	color: var(--pColor);
	margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 10px;
	border: none;
	border-bottom: 2px solid var(--sColor);
	outline: none;
	font-size: 16px;
	color: var(--pColor);
	background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-bottom: 2px solid var(--sColor);
}

.form-button {
	text-align: left;
	margin-top: 50px;
}

.common-form-btn {
	padding: 8px 0px 8px 20px;
	border: unset;
}

.connect-today-section {
	background-color: var(--light-nb);
	padding-top: 300px;
	padding-bottom: 100px;
}

.connect-today-head h2 {
	color: var(--sColor);
	font-size: 45px;
	padding-bottom: 50px;
}

.card-col {
	border-right: 1px solid var(--paraGrey);
	padding: 10px 20px;
}

.ct-card-wrappper {
	background-color: var(--sColor);
	padding: 30px;
	height: 330px;
}

.ct-card-icon img {
	height: 70px;
	width: auto;
}

.ct-card-head {
	padding-top: 70px;
}

.ct-card-head h2 {
	color: var(--white);
	padding-bottom: 10px;
}

.ct-card-body p {
	color: var(--white);
}

.ct-last-head {
	padding-top: unset;
	padding-bottom: 100px;
}

footer {
	padding: 50px 0px;
	padding-bottom: 25px;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-logo-sm-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.social-icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: 0;
}

.sm-icon {
	margin-right: 30px;
	border: 2px solid white;
	border-radius: 50%;
}

.sm-icon a img {
	height: 30px;
	width: auto;
}

.ul-wrapper h6 {
	color: var(--pColor);
	border-bottom: 1px solid var(--paraGrey);
	font-weight: 300;
	text-transform: uppercase;
	padding-bottom: 10px;
}

.ul-wrapper ul {
	padding-left: unset;
	list-style-type: none;
}

.ul-wrapper ul li {
	padding-bottom: 20px;
}

.ul-wrapper ul li a {
	color: var(--paraGrey);
	text-decoration: none;
	font-weight: 300;
}

.footer-ul-wrapper ul li a {
	color: var(--sColor) !important;
}

.common-btn-footer {
	padding: 5px 20px;
}
.connect-today-section .btn-arrow{
    background: var(--pColor);
}

.copyright {
	text-align: center;
	border-top: 1px solid var(--paraGrey);
	padding-top: 25px;
}

.copyright p {
	color: var(--pColor);
}

.copyright p a {
	text-decoration: none;
	color: var(--pColor);
}

.get-started-btn-wrapper {
	padding-top: 15%;
}

.get-started-btn {
	margin-top: 50px;
}

.contact-pg-footer .get-started-btn,
.contact-pg-footer .cms-btn {
	background-color: var(--white);
	color: var(--pColor);
}

.app-gpps {
	background-color: var(--pColor);
}

.section-title h2 {
	color: var(--white);
	padding-bottom: 40px;
}

.ac-img img {
	height: 130px;
	width: 130px;
	border-radius: 50%;
	object-fit: cover;
}

.ac-text p {
	color: var(--sColor);
	padding: 10px 80px;
}

.application-cards-wrapper {
	display: flex;
	justify-content: space-around;
}

.application-card {
	text-align: center;
}

.title h2 {
	color: var(--pColor);
	padding-bottom: 50px;
}

.supply-chain-process {
	background-image: url(../media/images/Supply-chain-bg.png);
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-bottom: 100px !important;
	padding-top: 100px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 100px;
}

.supply-chain-process-img-wrapper img {
	height: 350px;
	width: auto;
}

.abt-us-pg {
	background-color: var(--white);
}

.sf-abt-pg {
	margin-top: unset;
}

.conatct-pg-banner {
	background-image: url("../media/images/contact-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.conatct-pg-banner .banner-content-wrapper {
    padding-top: 10%;
    padding-bottom: 10%;
}

.address {
	color: var(--sColor);
	font-size: 22px;
}

.eps-banner {
	background-image: url("../media/images/beans.jpg");
	background-size: cover;
}

.contact-pg-form {
	background-color: unset;
	padding: unset;
	z-index: 4;
	position: relative;
}

.cpg-form-container {
	position: unset;
	padding: 50px 50px;
	margin-top: -20%;
}

.c-pg-form-sec-head h2 {
	text-shadow: unset;
	color: var(--sColor);
	padding-top: unset;
	line-height: 1.4;
}

.c-pg-cts {
	margin-top: -10%;
}

.contact-pg-info {
	padding-top: 250px;
	padding-bottom: 200px;
}

.banner-content-wrapper {
	padding-top: 10%;
}

.banner-title {
	color: var(--sColor);
	text-transform: uppercase;
	font-weight: 500;
	font-size: 50px;
	filter: unset;
}

.banner-subheading {
	color: var(--pColor);
	font-weight: 500;
	font-size: 40px;
}

.product-image img {
	height: auto;
	width: 100%;
	/*filter: grayscale(1);*/
}

.product-title {
	padding-bottom: 10px;
	font-weight: 400;
}

.product-subtitle {
	color: var(--sColor);
	text-transform: uppercase;
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 5px;
}

.product-description {
	padding-top: 30px;
	margin-bottom: 50px;
}

.pb-section-title {
	padding-bottom: 30px;
}

.gpp-grades {
	padding: 100px 0px;
}

.gpp-grades-card-wrapper {
	color: var(--white);
	box-shadow: 0px 4px 5px #0000000a, 0px -4px 5px #0000000a,
		4px 0px 5px #0000000a, -4px 0px 5px #0000000a;
	padding: 40px;
}

.grade-no {
	background-color: var(--pColor);
	padding: 5px 10px;
	width: fit-content;
	text-align: center;
}

.grade-no p {
	color: var(--white);
}

.grade-name h2 {
	color: var(--sColor);
	font-weight: 600;
	padding: 30px 0px;
	margin-bottom: 30px;
	border-bottom: 1px solid #d0d0d0;
	text-align: center;
}

.grade-details {
	padding-bottom: 50px;
	display: none;
}

.gd-pointer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.lni-check::before {
	color: var(--sColor);
}

.tds-btn {
	background-color: var(--white);
	color: var(--pColor);
	border: 1px solid var(--sColor);
	font-weight: 500;
	padding: 8px 0px 8px 20px;
}

.tds-btn span .lni-arrow-right::before {
	color: var(--white);
}

.tds-btn-container {
	margin-bottom: 30px;
}

.gpp-grades-card-b {
	background-color: var(--pColor);
}

.gpp-grades-card-b .grade-no {
	background-color: var(--sColor);
}

.gpp-grades-card-b .grade-details .gd-pointer p {
	color: var(--white);
}

.tds-btn-b {
	border: unset;
}

.modalForm {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

.modalForm .form-container {
	position: relative;
	width: 30%;
	top: 15%;
	padding: 30px 20px;
}

.form-btn {
	padding: 8px 0px 8px 17px;
	border: unset;
}

.close-btn {
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 50px;
	cursor: pointer;
}

.contact-pg-footer {
	background-color: var(--pColor);
}

.contact-pg-footer .ul-wrapper h6 {
	color: var(--white);
}

.map {
	position: relative;
	z-index: 4;
	background-color: var(--grey-bg);
}

.card-col:last-child {
	border-right: unset;
}

.map-iframe {
	margin-top: -100px;
}

@media only screen and (max-width: 767px) {
	.contact-info-container {
		display: none;
	}

	.navbar {
		padding: 10px 15px;
		position: sticky;
		top: 0;
		background-color: var(--white);
	}

	.logo a img {
		height: 30px;
	}

	.menu-toggle {
		display: block;
		font-size: 30px;
		margin-bottom: 5px;
	}

	.nav-container {
		position: absolute;
		top: 60px;
		right: 20px;
		background-color: var(--white);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		border-radius: 5px;
		display: none;
		flex-direction: column;
		padding: 40px;
	}

	.quote-btn-container {
		margin-top: 30px;
	}

	.nav-container.show {
		display: flex;
	}

	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		padding: unset;
	}

	.nav-links li {
		margin: 10px 0;
		width: 100%;
	}

	.nav-links .submenu {
		min-width: 220px;
	}

	.quote-item {
		margin-top: 10px;
		width: 100%;
	}

	.contact-info-wrapper {
		flex-direction: column;
	}

	.contact-info {
		padding-bottom: 10px;
	}

	.contact-icon img {
		height: 25px;
	}

	.sm-icon {
		margin: unset;
	}

	.submenu {
		position: static;
		box-shadow: none;
	}

	.top-banner {
		height: 60vh;
		background-size: cover;
	}

	.top-banner-text {
		top: 40%;
		left: 0%;
		transform: translate(0%, -50%);
		padding: 0 15px;
	}

	.top-banner-text h1 {
		font-size: 24px;
		padding: 10px 0px;
	}

	.top-banner-text p {
		margin-bottom: 30px;
		font-size: 14px;
	}

	.top-banner-image {
		height: auto;
		width: 100%;
		margin-top: 20px;
	}

	.top-banner-image img {
		height: auto;
		width: 100%;
	}

	.banner-img-col {
		padding: 0px;
	}

	.cta-btn-col {
		position: unset;
	}

	.cta-section h2 {
		font-size: 32px;
	}

	.cta-section p {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.upword-arrow {
		height: 90px;
		width: 90px;
		padding: 5px;
		top: -10px;
		bottom: unset;
		right: 0;
		left: unset;
	}

	.arrow-wrapper {
		height: 80px;
		width: 80px;
		padding: 5px;
	}

	.w-50 {
		width: 50% !important;
	}

	.application-card {
		padding-bottom: 20px;
	}

	.section-title h2 {
		padding-bottom: 20px;
	}

	.card-wrapper {
		margin-bottom: 20px;
		height: 480px;
	}

	.card-content {
		padding: 30px;
	}

	.company-name h2 {
		font-size: 40px;
		padding-bottom: 20px;
	}

	.application-cards-wrapper {
		flex-direction: column;
	}

	.supply-chain-process {
		margin-top: unset;
		padding-top: 50px !important;
		padding-bottom: 20px !important;
	}

	.supply-chain-process-img-wrapper img,
	.pti-a img {
		height: auto;
		width: 100%;
	}

	.abt-content {
		padding: 30px 0px;
	}

	.abt-icon {
		padding-bottom: 20px;
	}

	.abt-icon img {
		height: 80px;
	}

	.abt-heading h2 {
		font-size: 32px;
	}

	.product-benefits-wrapper {
		padding: 30px 0px;
	}

	.product-benefits-head h2 {
		color: var(--sColor);
		font-size: 32px;
		padding-bottom: unset;
	}

	.pb-icon-wrapper img {
		height: 60px;
		margin-bottom: 30px;
		filter: grayscale(1);
	}

	.pb-card-content h3 {
		font-size: 16px;
		color: var(--sColor);
	}

	.lni-plus {
		bottom: 15%;
		padding-top: unset;
	}

	.lni-plus::before {
		font-size: 24px;
	}

	.polystyrene-type {
		padding: 50px 0px;
	}

	.conatct-pg-banner {
		background-size: cover;
	}

	.banner-title {
		font-size: 34px;
	}

	.banner-subheading {
		font-size: 24px;
	}

	.banner-content-wrapper {
		padding-top: 20%;
	}

	.product-title {
		margin-bottom: unset;
		padding: 15px 0px 5px 0px;
	}

	.pb-section-title {
		padding-bottom: 10px;
	}

	.gpp-grades {
		padding: 50px 0px;
	}

	.product-description {
		padding-top: 10px;
		margin-bottom: 30px;
	}

	.gpp-grades-card-wrapper {
		padding: 30px;
		margin-bottom: 20px;
	}

	.content-wrapper {
		background: var(--grey-bg);
		width: 90%;
		margin-top: -40px;
		position: relative;
		z-index: 2;
		top: unset;
		margin-bottom: 20px;
	}

	.content {
		padding: 20px;
	}

	.content h2 {
		font-size: 32px;
		color: var(--sColor);
		padding-bottom: 0px;
	}

	.sustainability-focus {
		padding: 50px 0px;
		margin-top: unset;
	}

	.sustain-icon img {
		height: 70px;
	}

	.sustain-head {
		font-size: 32px;
		padding-top: 20px;
	}

	.sustain-para {
		padding-top: 0px;
		padding-bottom: 25px;
		font-size: 16px;
	}

	.sustainability-focus-img {
		margin-top: 30px;
	}

	.contact-form-section {
		padding: 50px 0px;
	}

	.contact-form-head h2 {
		font-size: 54px;
		padding: 0 20px;
	}

	.form-container {
		position: unset;
		padding: 30px 0px;
		margin-top: unset;
	}

	.form-container h2 {
		font-size: 26px;
		margin-bottom: unset;
	}

	.close-btn {
		top: -5px;
		right: 15px;
		font-size: 35px;
	}

	.connect-today-section {
		padding: 50px 0px;
	}

	.ct-card-wrappper {
		height: 280px;
	}

	.ct-card-icon img {
		height: 50px;
		width: auto;
	}

	.ct-card-head {
		padding-top: 50px;
	}

	.ct-last-head {
		padding-top: unset;
		padding-bottom: 50px;
	}

	.connect-today-head h2 {
		font-size: 32px;
		padding-bottom: unset;
	}

	.map {
		margin: unset;
		padding-top: 50px;
	}

	iframe {
		height: 350px;
	}

	.address {
		padding-bottom: 20px;
		font-size: 16px;
	}

	.modalForm .form-container {
		width: 80%;
		top: 10%;
		padding: 20px;
	}

	footer {
		padding: 30px 0px;
	}

	.footer-logo img {
		height: 30px;
		margin: 0 5px;
	}

	.footer-logo {
		margin-bottom: 70px;
	}

	.footer-social {
		padding-bottom: 20px;
	}

	.fsm-icon {
		margin: 0 5px;
	}

	.get-started-btn-wrapper,
	.about-us-btn {
		padding-top: unset;
		margin-bottom: 30px;
	}

	.copyright {
		margin-top: unset;
		padding-top: 30px;
	}

	html {
		overflow-x: hidden;
	}
}